From 9abee3f29a47da28ea066b408cc9524c2e918493 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Fri, 17 Sep 2021 19:20:59 -0500 Subject: [PATCH] Add semi-colon. --- src/include/janet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/janet.h b/src/include/janet.h index f65a6a87..9c741b0f 100644 --- a/src/include/janet.h +++ b/src/include/janet.h @@ -334,7 +334,7 @@ typedef struct JanetDudCriticalSection { /* Avoid including windows.h here - instead, create a structure of the same size */ /* Needs to be same size as crtical section see WinNT.h for CRITCIAL_SECTION definition */ void *debug_info; - long lock_count + long lock_count; long recursion_count; void *owning_thread; void *lock_semaphore;