Changeset 39846 in vbox
- Timestamp:
- Jan 23, 2012 11:50:24 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/process-win.cpp
r39842 r39846 946 946 * that -- can be tricky to debug later! */ 947 947 DWORD dwErr2 = GetLastError(); 948 AssertMsgFailed(("Unloading user profile failed with error % ld", dwErr2));948 AssertMsgFailed(("Unloading user profile failed with error %u (%#x)", dwErr2, dwErr2)); 949 949 if (dwErr == NO_ERROR) 950 950 dwErr = dwErr2; … … 965 965 if ( RT_SUCCESS(rc) 966 966 && dwErr != NO_ERROR) 967 {968 967 rc = rtProcMapErrorCodes(dwErr); 969 } 968 970 969 return rc; 971 970 }
Note:
See TracChangeset
for help on using the changeset viewer.