[commit: ghc] master: Fix build on windows (hopefully) (94d7c80)
Duncan Coutts
duncan.coutts at googlemail.com
Sun May 29 17:31:33 CEST 2011
Repository : ssh://darcs.haskell.org//srv/darcs/ghc
On branch : master
http://hackage.haskell.org/trac/ghc/changeset/94d7c806e2b0f1640372142a89cac2e974f5c26b
>---------------------------------------------------------------
commit 94d7c806e2b0f1640372142a89cac2e974f5c26b
Author: Duncan Coutts <duncan at well-typed.com>
Date: Sun May 29 16:29:03 2011 +0100
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.
>---------------------------------------------------------------
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 abfb4eb..cea313e 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);
More information about the Cvs-ghc
mailing list