Dmitry Timoshkov : msvcrt: Print exception code in hex.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Jun 12 07:09:37 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: a87a153587f4bfc3ca43c08823c26ae2e51ad091
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=a87a153587f4bfc3ca43c08823c26ae2e51ad091

Author: Dmitry Timoshkov <dmitry at codeweavers.com>
Date:   Sun Jun 11 00:19:33 2006 +0900

msvcrt: Print exception code in hex.

---

 dlls/msvcrt/except.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/msvcrt/except.c b/dlls/msvcrt/except.c
index a63645f..964ecda 100644
--- a/dlls/msvcrt/except.c
+++ b/dlls/msvcrt/except.c
@@ -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-cvs mailing list