diff options
author | Duncan Coutts <duncan@well-typed.com> | 2011-05-29 16:29:03 +0100 |
---|---|---|
committer | Duncan Coutts <duncan@well-typed.com> | 2011-05-29 16:29:03 +0100 |
commit | 94d7c806e2b0f1640372142a89cac2e974f5c26b (patch) | |
tree | 24c7a439ae04ecee1f6775c4d4fd13077c4debe2 /rts/eventlog | |
parent | e8832eb9f05ca46d9315250c3baf7010eb0630a4 (diff) | |
download | haskell-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.c | 2 |
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); |