Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Shayne Fletcher
Glasgow Haskell Compiler
Commits
c22af634
Commit
c22af634
authored
Jul 14, 2012
by
Ian Lynagh
Browse files
Add a missing semi-colon
parent
c8c56579
Changes
1
Hide whitespace changes
Inline
Side-by-side
rts/Task.h
View file @
c22af634
...
...
@@ -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
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment