summaryrefslogtreecommitdiff
path: root/rts/eventlog
diff options
context:
space:
mode:
authorDuncan Coutts <duncan@well-typed.com>2011-05-29 16:29:03 +0100
committerDuncan Coutts <duncan@well-typed.com>2011-05-29 16:29:03 +0100
commit94d7c806e2b0f1640372142a89cac2e974f5c26b (patch)
tree24c7a439ae04ecee1f6775c4d4fd13077c4debe2 /rts/eventlog
parente8832eb9f05ca46d9315250c3baf7010eb0630a4 (diff)
downloadhaskell-94d7c806e2b0f1640372142a89cac2e974f5c26b.tar.gz
Fix build on windows (hopefully)
A missing ';' that just happened to work fine on non-windows due to differing definitions of the ACQUIRE_LOCK macro.
Diffstat (limited to 'rts/eventlog')
-rw-r--r--rts/eventlog/EventLog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/eventlog/EventLog.c b/rts/eventlog/EventLog.c
index abfb4eb4d9..cea313e660 100644
--- a/rts/eventlog/EventLog.c
+++ b/rts/eventlog/EventLog.c
@@ -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);