diff options
author | Ian Lynagh <igloo@earth.li> | 2012-07-14 17:57:20 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-07-14 17:57:20 +0100 |
commit | c22af634481dd0c0e8b2087879e1d8c391ff1a8f (patch) | |
tree | 1df37fea0b648f950dc98a12e8ebbeefd166035a /rts/Task.h | |
parent | c8c5657980b5a7b5628d0f00b6a13bc88e733801 (diff) | |
download | haskell-c22af634481dd0c0e8b2087879e1d8c391ff1a8f.tar.gz |
Add a missing semi-colon
Diffstat (limited to 'rts/Task.h')
-rw-r--r-- | rts/Task.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Task.h b/rts/Task.h index 21a55dd242..0926950610 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; |