[commit: ghc] master: Missing printf path format change (a602fe5)
git at git.haskell.org
git at git.haskell.org
Fri Sep 13 17:29:50 CEST 2013
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/a602fe5ab58c92ebdf10aeece110b27a8d2e0b8d/ghc
>---------------------------------------------------------------
commit a602fe5ab58c92ebdf10aeece110b27a8d2e0b8d
Author: Simon Peyton Jones <simonpj at microsoft.com>
Date: Fri Sep 13 07:46:47 2013 +0100
Missing printf path format change
>---------------------------------------------------------------
a602fe5ab58c92ebdf10aeece110b27a8d2e0b8d
rts/Linker.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rts/Linker.c b/rts/Linker.c
index 4bc0e04..ff23a5e 100644
--- a/rts/Linker.c
+++ b/rts/Linker.c
@@ -2790,7 +2790,7 @@ unloadObj( pathchar *path )
initLinker();
- IF_DEBUG(linker, debugBelch("unloadObj: %s\n", path));
+ IF_DEBUG(linker, debugBelch("unloadObj: %" PATH_FMT "\n", path));
prev = NULL;
for (oc = objects; oc; prev = oc, oc = next) {
More information about the ghc-commits
mailing list