From 961ff0dbb1a6210fc20d63dc64676b88c3de66f7 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Sat, 12 Nov 2011 16:52:31 +0800 Subject: [PATCH] Kernel - Fixed not using %p for a pointer --- Kernel/binary.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.20.1