VirtualBox

Changeset 8190 in vbox for trunk/src


Ignore:
Timestamp:
Apr 19, 2008 8:31:36 PM (17 years ago)
Author:
vboxsync
Message:

gcc warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/testcase/tstAvl.cpp

    r8170 r8190  
    464464        if (!pNode)
    465465        {
    466             printf("\ntstAvl: FAILURE - oGCPhys - linear root remove i=%d Key=%d\n", i, Key);
     466            printf("\ntstAvl: FAILURE - oGCPhys - linear root remove i=%d Key=%d\n", i, (unsigned)Key);
    467467            return 1;
    468468        }
     
    474474        if (pNode)
    475475        {
    476             printf("\ntstAvl: FAILURE - oGCPhys - linear root negative remove i=%d Key=%d\n", i, Key);
     476            printf("\ntstAvl: FAILURE - oGCPhys - linear root negative remove i=%d Key=%d\n", i, (unsigned)Key);
    477477            return 1;
    478478        }
     
    524524            if (pNode->Key - (unsigned long)i >= 8 * 4)
    525525            {
    526                 printf("\ntstAvl: FAILURE - oGCPhys - sparse remove i=%d j=%d Key=%d\n", i, j, pNode->Key);
     526                printf("\ntstAvl: FAILURE - oGCPhys - sparse remove i=%d j=%d Key=%d\n", i, j, (unsigned)pNode->Key);
    527527                return 1;
    528528            }
     
    608608        if (pNode->Key != Key)
    609609        {
    610             printf("\ntstAvl: FAILURE - oGCPhys - random remove i=%d Key=%#x pNode->Key=%#x\n", i, Key, pNode->Key);
     610            printf("\ntstAvl: FAILURE - oGCPhys - random remove i=%d Key=%#x pNode->Key=%#x\n", i, Key, (unsigned)pNode->Key);
    611611            return 1;
    612612        }
     
    630630int avlrogcphys(void)
    631631{
    632     RTGCPHYS            i;
    633     RTGCPHYS            j;
    634     RTGCPHYS            k;
     632    unsigned            i;
     633    unsigned            j;
     634    unsigned            k;
    635635    PAVLROGCPHYSTREE    pTree = (PAVLROGCPHYSTREE)calloc(sizeof(*pTree), 1);
    636636
     
    649649        if (!RTAvlroGCPhysInsert(pTree, pNode))
    650650        {
    651             printf("tstAvl: FAILURE - roGCPhys - linear insert i=%d\n", i);
     651            printf("tstAvl: FAILURE - roGCPhys - linear insert i=%d\n", (unsigned)i);
    652652            return 1;
    653653        }
     
    681681        if (pNode->Key > i || pNode->KeyLast < i)
    682682        {
    683             printf("tstAvl: FAILURE - roGCPhys - linear get i=%d Key=%d KeyLast=%d\n", i, pNode->Key, pNode->KeyLast);
     683            printf("tstAvl: FAILURE - roGCPhys - linear get i=%d Key=%d KeyLast=%d\n", i, (unsigned)pNode->Key, (unsigned)pNode->KeyLast);
    684684            return 1;
    685685        }
     
    772772            if (!pNode)
    773773            {
    774                 printf("tstAvl: FAILURE - roGCPhys - sparse get i=%d j=%d KeyBase=%d\n", i, j, KeyBase);
     774                printf("tstAvl: FAILURE - roGCPhys - sparse get i=%d j=%d KeyBase=%d\n", i, j, (unsigned)KeyBase);
    775775                return 1;
    776776            }
    777777            if (pNode->Key > KeyBase || pNode->KeyLast < KeyBase)
    778778            {
    779                 printf("tstAvl: FAILURE - roGCPhys - sparse get i=%d j=%d KeyBase=%d pNode->Key=%d\n", i, j, KeyBase, pNode->Key);
     779                printf("tstAvl: FAILURE - roGCPhys - sparse get i=%d j=%d KeyBase=%d pNode->Key=%d\n", i, j, (unsigned)KeyBase, (unsigned)pNode->Key);
    780780                return 1;
    781781            }
     
    820820            if (RTAvlroGCPhysRangeRemove(pTree, Key) != pNode)
    821821            {
    822                 printf("tstAvl: FAILURE - roGCPhys - sparse remove i=%d j=%d Key=%d\n", i, j, Key);
     822                printf("tstAvl: FAILURE - roGCPhys - sparse remove i=%d j=%d Key=%d\n", i, j, (unsigned)Key);
    823823                return 1;
    824824            }
Note: See TracChangeset for help on using the changeset viewer.

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