Changeset 66293 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Mar 28, 2017 11:33:58 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPLibLdr.cpp
r66287 r66293 547 547 { 548 548 LogRel(("SUP: Loaded %s (%s) at %#RKv - ModuleInit at %RKv and ModuleTerm at %RKvr%s\n", 549 pszModule, pszFilename, OpenReq.u.Out.pvImageBase, ModuleInit,ModuleTerm,549 pszModule, pszFilename, OpenReq.u.Out.pvImageBase, (RTR0PTR)ModuleInit, (RTR0PTR)ModuleTerm, 550 550 OpenReq.u.Out.fNativeLoader ? " using the native ring-0 loader" : "")); 551 551 if (fIsVMMR0) 552 552 { 553 553 g_pvVMMR0 = OpenReq.u.Out.pvImageBase; 554 LogRel(("SUP: VMMR0EntryEx located at %RKv and VMMR0EntryFast at %RKv\n", VMMR0EntryEx,VMMR0EntryFast));554 LogRel(("SUP: VMMR0EntryEx located at %RKv and VMMR0EntryFast at %RKv\n", (RTR0PTR)VMMR0EntryEx, (RTR0PTR)VMMR0EntryFast)); 555 555 } 556 556 #ifdef RT_OS_WINDOWS
Note:
See TracChangeset
for help on using the changeset viewer.