Changeset 13841 in vbox for trunk/src/VBox/VMM/MMPhys.cpp
- Timestamp:
- Nov 5, 2008 3:38:52 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/MMPhys.cpp
r13824 r13841 251 251 if (!pCur) 252 252 { 253 AssertMsgFailed(("No physical range was found matching the ROM location (% #VGp LB%#x)\n", GCPhys, cbRange));253 AssertMsgFailed(("No physical range was found matching the ROM location (%RGp LB%#x)\n", GCPhys, cbRange)); 254 254 return VERR_INVALID_PARAMETER; 255 255 } 256 256 if (GCPhysLast - pCur->u.phys.GCPhys >= pCur->cb) 257 257 { 258 AssertMsgFailed(("The ROM range (% #VGp LB%#x) was crossing the end of the physical range (%#VGp LB%#x)\n",258 AssertMsgFailed(("The ROM range (%RGp LB%#x) was crossing the end of the physical range (%RGp LB%#x)\n", 259 259 GCPhys, cbRange, pCur->u.phys.GCPhys, pCur->cb)); 260 260 return VERR_INVALID_PARAMETER; … … 386 386 if (GCPhysLast - pCur->u.phys.GCPhys >= pCur->cb) 387 387 { 388 AssertMsgFailed(("The reserved range (% #VGp LB%#x) was crossing the end of the physical range (%#VGp LB%#x)\n",388 AssertMsgFailed(("The reserved range (%RGp LB%#x) was crossing the end of the physical range (%RGp LB%#x)\n", 389 389 GCPhys, cbRange, pCur->u.phys.GCPhys, pCur->cb)); 390 390 return VERR_INVALID_PARAMETER;
Note:
See TracChangeset
for help on using the changeset viewer.