msvcrt: Print exception code in hex.

oldstable
Dmitry Timoshkov 2006-06-11 00:19:33 +09:00 committed by Alexandre Julliard
parent d822496dee
commit a87a153587
1 changed files with 1 additions and 1 deletions

View File

@ -539,7 +539,7 @@ MSVCRT___sighandler_t MSVCRT_signal(int sig, MSVCRT___sighandler_t func)
*/
int _XcptFilter(NTSTATUS ex, PEXCEPTION_POINTERS ptr)
{
TRACE("(%ld,%p)\n", ex, ptr);
TRACE("(%08lx,%p)\n", ex, ptr);
/* I assume ptr->ExceptionRecord->ExceptionCode is the same as ex */
return msvcrt_exception_filter(ptr);
}