[commit: ghc] master: Add missing semicolon in rts/Linker.c (#8271) (66aa489)
git at git.haskell.org
git at git.haskell.org
Thu Sep 12 15:04:46 CEST 2013
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/66aa489fcbfca30dc3c3b553fce4f1e4debfb7c1/ghc
>---------------------------------------------------------------
commit 66aa489fcbfca30dc3c3b553fce4f1e4debfb7c1
Author: Jan Stolarek <jan.stolarek at p.lodz.pl>
Date: Thu Sep 12 11:44:20 2013 +0100
Add missing semicolon in rts/Linker.c (#8271)
And remove some trailing whitespaces from that file.
>---------------------------------------------------------------
66aa489fcbfca30dc3c3b553fce4f1e4debfb7c1
rts/Linker.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rts/Linker.c b/rts/Linker.c
index 9dc0598..b4f7260 100644
--- a/rts/Linker.c
+++ b/rts/Linker.c
@@ -1705,7 +1705,7 @@ internal_dlsym(void *hdl, const char *symbol) {
return v;
}
}
- v = dlsym(hdl, symbol)
+ v = dlsym(hdl, symbol);
RELEASE_LOCK(&dl_mutex);
return v;
}
More information about the ghc-commits
mailing list