Changeset 39405 in vbox for trunk/src/VBox/VMM/VMMR3/DBGFReg.cpp
- Timestamp:
- Nov 23, 2011 7:30:29 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/DBGFReg.cpp
r39078 r39405 1045 1045 break; 1046 1046 default: 1047 AssertMsgFailedReturn(("%s %d\n", pDesc->pszName, pDesc->enmType), VERR_I NTERNAL_ERROR_3);1047 AssertMsgFailedReturn(("%s %d\n", pDesc->pszName, pDesc->enmType), VERR_IPE_NOT_REACHED_DEFAULT_CASE); 1048 1048 } 1049 1049 } … … 1873 1873 ssize_t cch = RTStrFormatU64(pszTmp, cbTmp, pValue->dtr.u64Base, 1874 1874 16, 2+16, 0, RTSTR_F_SPECIAL | RTSTR_F_ZEROPAD); 1875 AssertReturn(cch > 0, VERR_ INTERNAL_ERROR_4);1875 AssertReturn(cch > 0, VERR_DBGF_REG_IPE_1); 1876 1876 pszTmp[cch++] = ':'; 1877 1877 cch += RTStrFormatU64(&pszTmp[cch], cbTmp - cch, pValue->dtr.u32Limit, … … 1888 1888 1889 1889 RTStrPrintf(pszTmp, cbTmp, "!enmType=%d!", enmType); 1890 return VERR_ INTERNAL_ERROR_5;1890 return VERR_DBGF_REG_IPE_2; 1891 1891 } 1892 1892
Note:
See TracChangeset
for help on using the changeset viewer.