diff options
author | Simon Peyton Jones <simonpj@microsoft.com> | 2013-09-13 07:46:47 +0100 |
---|---|---|
committer | Simon Peyton Jones <simonpj@microsoft.com> | 2013-09-13 16:25:54 +0100 |
commit | a602fe5ab58c92ebdf10aeece110b27a8d2e0b8d (patch) | |
tree | a8786b1b3630879e00e629e055a61710bae0bf57 /rts | |
parent | 8570fe73c42197e7de8dbbd9d8ec3955ded9dc81 (diff) | |
download | haskell-a602fe5ab58c92ebdf10aeece110b27a8d2e0b8d.tar.gz |
Missing printf path format change
Diffstat (limited to 'rts')
-rw-r--r-- | rts/Linker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Linker.c b/rts/Linker.c index 4bc0e040ad..ff23a5ef34 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) { |