From 5fa459dac2b51e43e6eee0c06aaa96160d9c65ad Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Thu, 19 Feb 2015 18:42:37 +0000 Subject: [PATCH] [KERNEL32] Fixx 64bits build. Spotted by Thomas svn path=/trunk/; revision=66355 --- reactos/dll/win32/kernel32/client/except.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/kernel32/client/except.c b/reactos/dll/win32/kernel32/client/except.c index 6f9654a8bfc..e313e990faa 100644 --- a/reactos/dll/win32/kernel32/client/except.c +++ b/reactos/dll/win32/kernel32/client/except.c @@ -370,7 +370,7 @@ RaiseException(IN DWORD dwExceptionCode, { DPRINT1("Delphi Exception at address: %p\n", ExceptionRecord.ExceptionInformation[0]); DPRINT1("Exception-Object: %p\n", ExceptionRecord.ExceptionInformation[1]); - DPRINT1("Exception text: %x\n", ExceptionRecord.ExceptionInformation[2]); + DPRINT1("Exception text: %lx\n", ExceptionRecord.ExceptionInformation[2]); } /* Trace the wine special error and show the modulename and functionname */