Changeset 22004 for trunk/src/kernel32/oslibexcept.cpp
- Timestamp:
- Jul 7, 2012, 1:59:15 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/oslibexcept.cpp
r21999 r22004 170 170 if (rc != ExceptionContinueExecution) 171 171 { 172 dprintf(("Win32 exception handler returned %x", rc)); 172 dprintf(("Win32 exception handler returned %s (%d)", 173 rc == ExceptionContinueSearch ? "ExceptionContinueSearch" : 174 "???", rc)); 173 175 return FALSE; 174 176 } 175 177 176 dprintf(("Win32 exception handler returned ExceptionContinueExecution")); 178 dprintf(("Win32 exception handler returned ExceptionContinueExecution (%d)", 179 ExceptionContinueExecution)); 177 180 178 181 if (pWinContextRec->ContextFlags & WINCONTEXT_CONTROL)
Note:
See TracChangeset
for help on using the changeset viewer.