From: Simon Marlow Date: Thu, 20 Nov 2008 08:49:01 +0000 (+0000) Subject: error message wibble X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=01014815a071a8ffd2fa1225c0f196a3e76fdb74 error message wibble --- diff --git a/rts/Linker.c b/rts/Linker.c index 84c69cb..4fcfade 100644 --- a/rts/Linker.c +++ b/rts/Linker.c @@ -1324,7 +1324,7 @@ mmap_again: if ((W_)result > 0x80000000) { // oops, we were given memory over 2Gb // ... try allocating memory somewhere else?; - barf("loadObj: failed to mmap() memory below 2Gb; asked for %lu bytes at 0x%p, got 0x%p. Try specifying an address with +RTS -xm -RTS", bytes, map_addr, result); + barf("loadObj: failed to mmap() memory below 2Gb; asked for %lu bytes at %p, got %p. Try specifying an address with +RTS -xm -RTS", bytes, map_addr, result); } else { // hmm, we were given memory somewhere else, but it's // still under 2Gb so we can use it. Next time, ask