[GHC] #8271: missing semicolon in rts/Linker.c
GHC
ghc-devs at haskell.org
Thu Sep 12 06:31:13 CEST 2013
#8271: missing semicolon in rts/Linker.c
------------------------------------+-------------------------------------
Reporter: rwbarton | Owner:
Type: bug | Status: new
Priority: normal | Milestone:
Component: Runtime System | Version: 7.7
Keywords: | Operating System: Unknown/Multiple
Architecture: Unknown/Multiple | Type of failure: None/Unknown
Difficulty: Unknown | Test Case:
Blocked By: | Blocking:
Related Tickets: |
------------------------------------+-------------------------------------
{{{
--- /home/rwbarton/dist/ghc4/rts/Linker.c 2013-09-12
00:02:00.000000000 -0400
+++ /tmp/Linker.c 2013-09-12 00:14:57.000000000 -0400
@@ -1706,7 +1706,7 @@
return v;
}
}
- v = dlsym(hdl, symbol)
+ v = dlsym(hdl, symbol);
RELEASE_LOCK(&dl_mutex);
return v;
}
}}}
The missing ; is harmless when LOCK_DEBUG is not defined, because then the
expansion of RELEASE_LOCK starts with a ; token.
--
Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/8271>
GHC <http://www.haskell.org/ghc/>
The Glasgow Haskell Compiler
More information about the ghc-tickets
mailing list