Changeset 13824 in vbox for trunk/src/VBox/VMM/MMPhys.cpp
- Timestamp:
- Nov 5, 2008 1:11:24 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/MMPhys.cpp
r13819 r13824 85 85 int rc = VINF_SUCCESS; 86 86 87 Log(("MMR3PhysRegister: pvRam=%p GCPhys=% VGp cb=%#x fFlags=%#x\n", pvRam, GCPhys, cb, fFlags));87 Log(("MMR3PhysRegister: pvRam=%p GCPhys=%RGp cb=%#x fFlags=%#x\n", pvRam, GCPhys, cb, fFlags)); 88 88 89 89 /* … … 268 268 != MM_RAM_FLAGS_RESERVED) 269 269 { 270 AssertMsgFailed(("Flags conflict at % VGp, HCPhys=%RHp.\n", pCur->u.phys.GCPhys + (iPage << PAGE_SHIFT), pCur->aPhysPages[iPage].Phys));270 AssertMsgFailed(("Flags conflict at %RGp, HCPhys=%RHp.\n", pCur->u.phys.GCPhys + (iPage << PAGE_SHIFT), pCur->aPhysPages[iPage].Phys)); 271 271 return VERR_INVALID_PARAMETER; 272 272 } … … 486 486 return VINF_SUCCESS; 487 487 } 488 AssertMsgFailed(("GCPhys=% VGp cbRange=%#x\n", GCPhys, cbRange));488 AssertMsgFailed(("GCPhys=%RGp cbRange=%#x\n", GCPhys, cbRange)); 489 489 return VERR_INVALID_PARAMETER; 490 490 }
Note:
See TracChangeset
for help on using the changeset viewer.