From 468d68d60d294abf618ee4f4bc39107d8034061c Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Fri, 9 Dec 2022 11:45:06 +0100 Subject: [PATCH] msvcrt: Consistently use %I printf format for ULONG_PTR values. --- dlls/msvcrt/except_i386.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msvcrt/except_i386.c b/dlls/msvcrt/except_i386.c index 662b4ebadb0..d4d45c74d17 100644 --- a/dlls/msvcrt/except_i386.c +++ b/dlls/msvcrt/except_i386.c @@ -355,7 +355,7 @@ static DWORD catch_function_nested_handler( EXCEPTION_RECORD *rec, EXCEPTION_REG if(TRACE_ON(seh)) { TRACE("detect rethrow: exception code: %lx\n", rec->ExceptionCode); if(rec->ExceptionCode == CXX_EXCEPTION) - TRACE("re-propagate: obj: %lx, type: %lx\n", + TRACE("re-propagate: obj: %Ix, type: %Ix\n", rec->ExceptionInformation[1], rec->ExceptionInformation[2]); } } @@ -588,7 +588,7 @@ DWORD CDECL cxx_frame_handler( PEXCEPTION_RECORD rec, cxx_exception_frame* frame if(TRACE_ON(seh)) { TRACE("detect rethrow: exception code: %lx\n", rec->ExceptionCode); if(rec->ExceptionCode == CXX_EXCEPTION) - TRACE("re-propagate: obj: %lx, type: %lx\n", + TRACE("re-propagate: obj: %Ix, type: %Ix\n", rec->ExceptionInformation[1], rec->ExceptionInformation[2]); } }