VirtualBox

Ignore:
Timestamp:
Feb 2, 2010 9:11:09 PM (15 years ago)
Author:
vboxsync
Message:

PDM: s/pCfgHandle/pCfg/g - part 2.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Storage/DrvRawImage.cpp

    r26166 r26173  
    268268 * @copydoc FNPDMDRVCONSTRUCT
    269269 */
    270 static DECLCALLBACK(int) drvRawImageConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle, uint32_t fFlags)
     270static DECLCALLBACK(int) drvRawImageConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags)
    271271{
    272272    PDRVRAWIMAGE pThis = PDMINS_2_DATA(pDrvIns, PDRVRAWIMAGE);
     
    295295     * Read the configuration.
    296296     */
    297     if (!CFGMR3AreValuesValid(pCfgHandle, "Path\0"))
     297    if (!CFGMR3AreValuesValid(pCfg, "Path\0"))
    298298        return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES;
    299299
    300300    char *pszName;
    301     int rc = CFGMR3QueryStringAlloc(pCfgHandle, "Path", &pszName);
     301    int rc = CFGMR3QueryStringAlloc(pCfg, "Path", &pszName);
    302302    if (RT_FAILURE(rc))
    303303    {
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