Commit 468d68d6 authored by Alexandre Julliard's avatar Alexandre Julliard

msvcrt: Consistently use %I printf format for ULONG_PTR values.

parent 1c5e38f3
......@@ -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]);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment