aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/include/janet.h
diff options
context:
space:
mode:
authorCalvin Rose <calsrose@gmail.com>2021-09-17 19:20:59 -0500
committerCalvin Rose <calsrose@gmail.com>2021-09-17 19:20:59 -0500
commit9abee3f29a47da28ea066b408cc9524c2e918493 (patch)
tree5557ad4fece79a08c365167dc821fd14640f2e4d /src/include/janet.h
parentAvoid including windows.h in janet.h for JanetOSMutex. (diff)
Add semi-colon.
Diffstat (limited to 'src/include/janet.h')
-rw-r--r--src/include/janet.h2
1 files changed, 1 insertions, 1 deletions
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;