[commit: ghc] master: Add a missing newline to a GHCi linker debugBelch (92bb7be)

git at git.haskell.org git at git.haskell.org
Wed Aug 20 16:31:08 UTC 2014


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/92bb7bec0ca3bdcb1a32afb7e460fe2af5afa37c/ghc

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

commit 92bb7bec0ca3bdcb1a32afb7e460fe2af5afa37c
Author: Reid Barton <rwbarton at gmail.com>
Date:   Wed Aug 20 12:17:16 2014 -0400

    Add a missing newline to a GHCi linker debugBelch


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

92bb7bec0ca3bdcb1a32afb7e460fe2af5afa37c
 rts/Linker.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rts/Linker.c b/rts/Linker.c
index 1f716e3..76cfa8c 100644
--- a/rts/Linker.c
+++ b/rts/Linker.c
@@ -5643,7 +5643,7 @@ do_Elf_Rela_relocations ( ObjectCode* oc, char* ehdrC,
            errorBelch("%s: unknown symbol `%s'", oc->fileName, symbol);
            return 0;
          }
-         IF_DEBUG(linker,debugBelch( "`%s' resolves to %p", symbol, (void*)S ));
+         IF_DEBUG(linker,debugBelch( "`%s' resolves to %p\n", symbol, (void*)S ));
       }
 
       IF_DEBUG(linker,debugBelch("Reloc: P = %p   S = %p   A = %p\n",



More information about the ghc-commits mailing list