Repository : ssh://[email protected]/ghc

On branch  : master
Link       : 
http://ghc.haskell.org/trac/ghc/changeset/66aa489fcbfca30dc3c3b553fce4f1e4debfb7c1/ghc

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

commit 66aa489fcbfca30dc3c3b553fce4f1e4debfb7c1
Author: Jan Stolarek <[email protected]>
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;
 }

_______________________________________________
ghc-commits mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/ghc-commits

Reply via email to