Changeset 84054 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Apr 28, 2020 4:05:00 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/win/SUPLib-win.cpp
r82968 r84054 246 246 { 247 247 /* Prefix. */ 248 size_t cchPrefix; 249 const char *pszDefine = RTErrGetDefine(rc); 250 if (strncmp(pszDefine, RT_STR_TUPLE("Unknown"))) 251 cchPrefix = RTStrPrintf(pErrInfo->pszMsg, pErrInfo->cbMsg / 2, "Integrity error (%#x/%s): ", rcNt, pszDefine); 248 size_t cchPrefix; 249 if (RTErrIsKnown(rc)) 250 cchPrefix = RTStrPrintf(pErrInfo->pszMsg, pErrInfo->cbMsg / 2, "Integrity error (%#x/%Rrc): ", rcNt, rc); 252 251 else 253 252 cchPrefix = RTStrPrintf(pErrInfo->pszMsg, pErrInfo->cbMsg / 2, "Integrity error (%#x/%d): ", rcNt, rc);
Note:
See TracChangeset
for help on using the changeset viewer.