msvcrt: Consistently use %I printf format for ULONG_PTR values.
This commit is contained in:
parent
1c5e38f3ec
commit
468d68d60d
1 changed files with 2 additions and 2 deletions
|
@ -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]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue