[commit: ghc] master: Add a missing semi-colon (c22af63)

Ian Lynagh igloo at earth.li
Fri Jul 20 15:46:36 CEST 2012


Repository : ssh://darcs.haskell.org//srv/darcs/ghc

On branch  : master

http://hackage.haskell.org/trac/ghc/changeset/c22af634481dd0c0e8b2087879e1d8c391ff1a8f

>---------------------------------------------------------------

commit c22af634481dd0c0e8b2087879e1d8c391ff1a8f
Author: Ian Lynagh <igloo at earth.li>
Date:   Sat Jul 14 17:57:20 2012 +0100

    Add a missing semi-colon

>---------------------------------------------------------------

 rts/Task.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/rts/Task.h b/rts/Task.h
index 21a55dd..0926950 100644
--- a/rts/Task.h
+++ b/rts/Task.h
@@ -291,7 +291,7 @@ INLINE_HEADER TaskId serialiseTaskId (OSThreadId taskID) {
 #if defined(freebsd_HOST_OS) || defined(darwin_HOST_OS)
     // Here OSThreadId is a pthread_t and pthread_t is a pointer, but within
     // the process we can still use that pointer value as a unique id.
-    return (TaskId) (size_t) taskID
+    return (TaskId) (size_t) taskID;
 #else
     // On Windows, Linux and others it's an integral type to start with.
     return (TaskId) taskID;





More information about the Cvs-ghc mailing list