From: Ian Lynagh Date: Mon, 24 Jan 2011 18:36:18 +0000 (+0000) Subject: Fix validate on OS X 64 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=77b29b5685db2f8745d191af1599ed753bef91e7;p=ghc-hetmet.git Fix validate on OS X 64 --- diff --git a/rts/Linker.c b/rts/Linker.c index fd5c158..70aae3b 100644 --- a/rts/Linker.c +++ b/rts/Linker.c @@ -40,6 +40,7 @@ #include #endif +#include #include #include #include @@ -4652,8 +4653,8 @@ static int relocateSection( } IF_DEBUG(linker, - debugBelch("relocateSection: length = %d, thing = %d, baseValue = %p\n", - reloc->r_length, thing, baseValue)); + debugBelch("relocateSection: length = %d, thing = %" PRId64 ", baseValue = %p\n", + reloc->r_length, thing, (char *)baseValue)); if (type == X86_64_RELOC_GOT || type == X86_64_RELOC_GOT_LOAD)