Changeset 4620 in vbox for trunk/src/VBox/Debugger
- Timestamp:
- Sep 8, 2007 12:39:30 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGConsole.cpp
r4330 r4620 5213 5213 Assert(pDbgc->pVM); 5214 5214 pResult->enmType = DBGCVAR_TYPE_GC_PHYS; 5215 rc = PGMPhysHCPtr2GCPhys (pDbgc->pVM, pArg->u.pvHCFlat, &pResult->u.GCPhys);5215 rc = PGMPhysHCPtr2GCPhysDbg(pDbgc->pVM, pArg->u.pvHCFlat, &pResult->u.GCPhys); 5216 5216 if (VBOX_SUCCESS(rc)) 5217 5217 return 0; … … 5295 5295 Assert(pDbgc->pVM); 5296 5296 pResult->enmType = DBGCVAR_TYPE_HC_PHYS; 5297 rc = PGMPhysHCPtr2HCPhys (pDbgc->pVM, pArg->u.pvHCFlat, &pResult->u.HCPhys);5297 rc = PGMPhysHCPtr2HCPhysDbg(pDbgc->pVM, pArg->u.pvHCFlat, &pResult->u.HCPhys); 5298 5298 if (VBOX_SUCCESS(rc)) 5299 5299 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.