Changeset 66867 in vbox for trunk/src/VBox
- Timestamp:
- May 10, 2017 2:27:01 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 115346
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/nt/RTErrConvertFromNtStatus.cpp
r66865 r66867 84 84 85 85 /* unknown error. */ 86 #ifndef IN_SUP_HARDENED_R3 86 87 AssertLogRelMsgFailed(("Unhandled error %#lx (%lu)\n", lNativeCode, lNativeCode)); 88 #else 89 /* hardened main has no LogRel */ 90 AssertMsgFailed(("Unhandled error %#lx (%lu)\n", lNativeCode, lNativeCode)); 91 #endif 87 92 return VERR_UNRESOLVED_ERROR; 88 93 } -
trunk/src/VBox/Runtime/win/RTErrConvertFromWin32.cpp
r66865 r66867 435 435 436 436 /* unknown error. */ 437 #ifndef IN_SUP_HARDENED_R3 437 438 AssertLogRelMsgFailed(("Unhandled error %u\n", uNativeCode)); 439 #else 440 /* hardened main has no LogRel */ 441 AssertMsgFailed(("Unhandled error %u\n", uNativeCode)); 442 #endif 438 443 return VERR_UNRESOLVED_ERROR; 439 444 }
Note:
See TracChangeset
for help on using the changeset viewer.