Changeset 43876 in vbox for trunk/src/VBox/Debugger
- Timestamp:
- Nov 15, 2012 1:44:09 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 82086
- Location:
- trunk/src/VBox/Debugger
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGPlugInCommonELFTmpl.cpp.h
r33540 r43876 240 240 { 241 241 char szSeg[32]; 242 RTStrPrintf(szSeg, sizeof(szSeg), "sec%02 ", i);242 RTStrPrintf(szSeg, sizeof(szSeg), "sec%02u", i); 243 243 RTGCPTR cbSeg = paSegs[i].uLastAddr - paSegs[i].uLoadAddr + 1; 244 244 rc = RTDbgModSegmentAdd(hMod, uRvaNext, cbSeg, szSeg, 0 /*fFlags*/, &paSegs[i].iSeg); … … 256 256 { 257 257 char szSeg[32]; 258 RTStrPrintf(szSeg, sizeof(szSeg), "sec%02 ", i);258 RTStrPrintf(szSeg, sizeof(szSeg), "sec%02u", i); 259 259 rc = RTDbgModSegmentAdd(hMod, paShdrs[i].sh_addr - uLoadAddr, paShdrs[i].sh_size, szSeg, 0 /*fFlags*/, &paSegs[i].iSeg); 260 260 if (RT_FAILURE(rc)) -
trunk/src/VBox/Debugger/DBGPlugInOS2.cpp
r40728 r43876 148 148 else if (pThis->OS2MinorVersion < 40) 149 149 { 150 RTStrPrintf(pszOS2ProductType, sizeof(achOS2ProductType), "OS/2 Warp" , pThis->OS2MinorVersion);150 RTStrPrintf(pszOS2ProductType, sizeof(achOS2ProductType), "OS/2 Warp"); 151 151 pThis->enmVer = DBGDIGGEROS2VER_3_0; 152 152 } 153 153 else if (pThis->OS2MinorVersion == 40) 154 154 { 155 RTStrPrintf(pszOS2ProductType, sizeof(achOS2ProductType), "OS/2 Warp 4" , pThis->OS2MinorVersion);155 RTStrPrintf(pszOS2ProductType, sizeof(achOS2ProductType), "OS/2 Warp 4"); 156 156 pThis->enmVer = DBGDIGGEROS2VER_4_0; 157 157 }
Note:
See TracChangeset
for help on using the changeset viewer.