Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master
http://hackage.haskell.org/trac/ghc/changeset/94d7c806e2b0f1640372142a89cac2e974f5c26b >--------------------------------------------------------------- commit 94d7c806e2b0f1640372142a89cac2e974f5c26b Author: Duncan Coutts <[email protected]> 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); _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
