msvcrt: Print exception code in hex

Dmitry Timoshkov dmitry at codeweavers.com
Sat Jun 10 10:19:33 CDT 2006


Hello,

Changelog:
    msvcrt: Print exception code in hex.

--- cvs/hq/wine/dlls/msvcrt/except.c	2006-05-24 13:16:14.000000000 +0900
+++ wine/dlls/msvcrt/except.c	2006-06-10 23:28:00.000000000 +0900
@@ -539,7 +539,7 @@ MSVCRT___sighandler_t MSVCRT_signal(int 
  */
 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);
 }





More information about the wine-patches mailing list