Fix build on windows (hopefully)
authorDuncan Coutts <duncan@well-typed.com>
Sun, 29 May 2011 15:29:03 +0000 (16:29 +0100)
committerDuncan Coutts <duncan@well-typed.com>
Sun, 29 May 2011 15:29:03 +0000 (16:29 +0100)
A missing ';' that just happened to work fine on non-windows due
to differing definitions of the ACQUIRE_LOCK macro.

rts/eventlog/EventLog.c

index abfb4eb..cea313e 100644 (file)
@@ -528,7 +528,7 @@ void postCapsetStrEvent (EventTypeNum tag,
                          char *msg)
 {
     int strsize = strlen(msg);
-    int size = strsize + sizeof(EventCapsetID)
+    int size = strsize + sizeof(EventCapsetID);
 
     ACQUIRE_LOCK(&eventBufMutex);