projects
/
ghc-hetmet.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e8832eb
)
Fix build on windows (hopefully)
author
Duncan Coutts
<duncan@well-typed.com>
Sun, 29 May 2011 15:29:03 +0000
(16:29 +0100)
committer
Duncan 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
patch
|
blob
|
history
diff --git
a/rts/eventlog/EventLog.c
b/rts/eventlog/EventLog.c
index
abfb4eb
..
cea313e
100644
(file)
--- 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);