VirtualBox

Changeset 56982 in vbox for trunk


Ignore:
Timestamp:
Jul 18, 2015 6:59:45 PM (9 years ago)
Author:
vboxsync
Message:

SUPLibLdr.cpp: LogRel format fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/SUPLibLdr.cpp

    r56798 r56982  
    130130        rc = supLoadModule(pszFilename, pszModule, pszSrvReqHandler, NULL /*pErrInfo*/, ppvImageBase);
    131131    else
    132         LogRel(("SUPR3LoadServiceModule: Verification of \"%s\" failed, rc=%Rrc\n", rc));
     132        LogRel(("SUPR3LoadServiceModule: Verification of \"%s\" failed, rc=%Rrc\n", pszFilename, rc));
    133133    return rc;
    134134}
     
    379379    if (!RT_SUCCESS(rc))
    380380    {
    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));
    382382        return rc;
    383383    }
     
    577577            if (fIsVMMR0)
    578578                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,
    580580                    OpenReq.u.Out.fNativeLoader ? " loaded by the native ring-0 loader" : ""));
    581581#ifdef RT_OS_WINDOWS
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette