Changeset 64503 in vbox for trunk/src/VBox/VMM/VMMR3/DBGFR3Cfg.cpp
- Timestamp:
- Nov 1, 2016 9:15:59 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/DBGFR3Cfg.cpp
r64502 r64503 1011 1011 { 1012 1012 pDumpBb->cchHeight++; 1013 pDumpBb->cchWidth = RT_MAX(pDumpBb->cchWidth, strlen(pCfgBb->pszErr));1013 pDumpBb->cchWidth = RT_MAX(pDumpBb->cchWidth, (uint32_t)strlen(pCfgBb->pszErr)); 1014 1014 } 1015 1015 pDumpBb->cchWidth = 0; 1016 1016 for (unsigned i = 0; i < pCfgBb->cInstr; i++) 1017 pDumpBb->cchWidth = RT_MAX(pDumpBb->cchWidth, strlen(pCfgBb->aInstr[i].pszInstr));1017 pDumpBb->cchWidth = RT_MAX(pDumpBb->cchWidth, (uint32_t)strlen(pCfgBb->aInstr[i].pszInstr)); 1018 1018 pDumpBb->cchWidth += 4; /* Include spacing and border left and right. */ 1019 1019 }
Note:
See TracChangeset
for help on using the changeset viewer.