VirtualBox

Changeset 43876 in vbox for trunk/src/VBox/Debugger


Ignore:
Timestamp:
Nov 15, 2012 1:44:09 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
82086
Message:

fixed a few format specifier bugs

Location:
trunk/src/VBox/Debugger
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Debugger/DBGPlugInCommonELFTmpl.cpp.h

    r33540 r43876  
    240240            {
    241241                char szSeg[32];
    242                 RTStrPrintf(szSeg, sizeof(szSeg), "sec%02", i);
     242                RTStrPrintf(szSeg, sizeof(szSeg), "sec%02u", i);
    243243                RTGCPTR cbSeg = paSegs[i].uLastAddr - paSegs[i].uLoadAddr + 1;
    244244                rc = RTDbgModSegmentAdd(hMod, uRvaNext, cbSeg, szSeg, 0 /*fFlags*/, &paSegs[i].iSeg);
     
    256256            {
    257257                char szSeg[32];
    258                 RTStrPrintf(szSeg, sizeof(szSeg), "sec%02", i);
     258                RTStrPrintf(szSeg, sizeof(szSeg), "sec%02u", i);
    259259                rc = RTDbgModSegmentAdd(hMod, paShdrs[i].sh_addr - uLoadAddr, paShdrs[i].sh_size, szSeg, 0 /*fFlags*/, &paSegs[i].iSeg);
    260260                if (RT_FAILURE(rc))
  • trunk/src/VBox/Debugger/DBGPlugInOS2.cpp

    r40728 r43876  
    148148        else if (pThis->OS2MinorVersion < 40)
    149149        {
    150             RTStrPrintf(pszOS2ProductType, sizeof(achOS2ProductType), "OS/2 Warp", pThis->OS2MinorVersion);
     150            RTStrPrintf(pszOS2ProductType, sizeof(achOS2ProductType), "OS/2 Warp");
    151151            pThis->enmVer = DBGDIGGEROS2VER_3_0;
    152152        }
    153153        else if (pThis->OS2MinorVersion == 40)
    154154        {
    155             RTStrPrintf(pszOS2ProductType, sizeof(achOS2ProductType), "OS/2 Warp 4", pThis->OS2MinorVersion);
     155            RTStrPrintf(pszOS2ProductType, sizeof(achOS2ProductType), "OS/2 Warp 4");
    156156            pThis->enmVer = DBGDIGGEROS2VER_4_0;
    157157        }
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette