- Timestamp:
- Jul 18, 2015 6:59:45 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPLibLdr.cpp
r56798 r56982 130 130 rc = supLoadModule(pszFilename, pszModule, pszSrvReqHandler, NULL /*pErrInfo*/, ppvImageBase); 131 131 else 132 LogRel(("SUPR3LoadServiceModule: Verification of \"%s\" failed, rc=%Rrc\n", rc));132 LogRel(("SUPR3LoadServiceModule: Verification of \"%s\" failed, rc=%Rrc\n", pszFilename, rc)); 133 133 return rc; 134 134 } … … 379 379 if (!RT_SUCCESS(rc)) 380 380 { 381 LogRel(("SUP: RTLdrOpen failed for %s (%s) \n", pszModule, pszFilename, rc));381 LogRel(("SUP: RTLdrOpen failed for %s (%s) %Rrc\n", pszModule, pszFilename, rc)); 382 382 return rc; 383 383 } … … 577 577 if (fIsVMMR0) 578 578 g_pvVMMR0 = OpenReq.u.Out.pvImageBase; 579 LogRel(("SUP: Opened %s (%s) at %#p .\n", pszModule, pszFilename, OpenReq.u.Out.pvImageBase,579 LogRel(("SUP: Opened %s (%s) at %#p%s.\n", pszModule, pszFilename, OpenReq.u.Out.pvImageBase, 580 580 OpenReq.u.Out.fNativeLoader ? " loaded by the native ring-0 loader" : "")); 581 581 #ifdef RT_OS_WINDOWS
Note:
See TracChangeset
for help on using the changeset viewer.