From: John Hodge Date: Sat, 12 Nov 2011 08:52:31 +0000 (+0800) Subject: Kernel - Fixed not using %p for a pointer X-Git-Tag: rel0.14~107 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=961ff0dbb1a6210fc20d63dc64676b88c3de66f7;p=tpg%2Facess2.git Kernel - Fixed not using %p for a pointer --- diff --git a/Kernel/binary.c b/Kernel/binary.c index 8c28d724..c676e55c 100644 --- a/Kernel/binary.c +++ b/Kernel/binary.c @@ -377,7 +377,7 @@ tVAddr Binary_MapIn(tBinary *Binary, const char *Path, tVAddr LoadMin, tVAddr Lo } } - Log_Debug("Binary", "PID %i - Mapped '%s' to 0x%x", Threads_GetPID(), Path, base); + Log_Debug("Binary", "PID %i - Mapped '%s' to %p", Threads_GetPID(), Path, base); VFS_Close(fd); LEAVE('p', base);