VirtualBox

Changeset 9303 in vbox


Ignore:
Timestamp:
Jun 2, 2008 1:47:21 PM (17 years ago)
Author:
vboxsync
Message:

Signed/unsigned mismatch. More string format specifiers

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

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/MMHyper.cpp

    r9148 r9303  
    272272             * Accepted!
    273273             */
    274             AssertMsg(GCPtrOld == pVM->mm.s.pvHyperAreaGC, ("GCPtrOld=%#x pVM->mm.s.pvHyperAreaGC=%#x\n", GCPtrOld, pVM->mm.s.pvHyperAreaGC));
    275             Log(("Relocating the hypervisor from %#x to %#x\n", GCPtrOld, GCPtrNew));
     274            AssertMsg(GCPtrOld == pVM->mm.s.pvHyperAreaGC, ("GCPtrOld=%VGv pVM->mm.s.pvHyperAreaGC=%VGv\n", GCPtrOld, pVM->mm.s.pvHyperAreaGC));
     275            Log(("Relocating the hypervisor from %VGv to %VGv\n", GCPtrOld, GCPtrNew));
    276276
    277277            /* relocate our selves and the VM structure. */
  • trunk/src/VBox/VMM/PGMMap.cpp

    r8543 r9303  
    782782void pgmR3MapRelocate(PVM pVM, PPGMMAPPING pMapping, RTGCPTR GCPtrOldMapping, RTGCPTR GCPtrNewMapping)
    783783{
    784     int iPDOld = GCPtrOldMapping >> X86_PD_SHIFT;
    785     int iPDNew = GCPtrNewMapping >> X86_PD_SHIFT;
     784    unsigned iPDOld = GCPtrOldMapping >> X86_PD_SHIFT;
     785    unsigned iPDNew = GCPtrNewMapping >> X86_PD_SHIFT;
    786786
    787787    Log(("PGM: Relocating %s from %VGv to %VGv\n", pMapping->pszDesc, GCPtrOldMapping, GCPtrNewMapping));
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