VirtualBox

Changeset 9837 in vbox for trunk/src


Ignore:
Timestamp:
Jun 20, 2008 9:01:48 AM (17 years ago)
Author:
vboxsync
Message:

build fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/IOMAllMMIO.cpp

    r9836 r9837  
    11981198    switch (cbValue)
    11991199    {
    1200         case 1: *(uint8_t *)pu32Value  = 0xff; break;
    1201         case 2: *(uint16_t *)pu32Value = 0xffff; break;
    1202         case 4: *(uint32_t *)pu32Value = 0xffffffff; break;
    1203         case 8: *(uint64_t *)pu32Value = 0xffffffffffffffff; break;
     1200        case 1: *(uint8_t *)pu32Value  = UINT8_C(0xff); break;
     1201        case 2: *(uint16_t *)pu32Value = UINT16_C(0xffff); break;
     1202        case 4: *(uint32_t *)pu32Value = UINT32_C(0xffffffff); break;
     1203        case 8: *(uint64_t *)pu32Value = UINT64_C(0xffffffffffffffff); break;
    12041204        default: AssertReleaseMsgFailed(("cbValue=%d GCPhys=%VGp\n", cbValue, GCPhys)); break;
    12051205    }
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