VirtualBox

Ignore:
Timestamp:
Feb 2, 2010 9:11:09 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
57187
Message:

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

File:
1 edited

Legend:

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

    r26166 r26173  
    231231 * @copydoc FNPDMDRVCONSTRUCT
    232232 */
    233 static DECLCALLBACK(int) drvMediaISOConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle, uint32_t fFlags)
     233static DECLCALLBACK(int) drvMediaISOConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags)
    234234{
    235235    PDRVMEDIAISO pThis = PDMINS_2_DATA(pDrvIns, PDRVMEDIAISO);
     
    258258     * Read the configuration.
    259259     */
    260     if (!CFGMR3AreValuesValid(pCfgHandle, "Path\0"))
     260    if (!CFGMR3AreValuesValid(pCfg, "Path\0"))
    261261        return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES;
    262262
    263263    char *pszName;
    264     int rc = CFGMR3QueryStringAlloc(pCfgHandle, "Path", &pszName);
     264    int rc = CFGMR3QueryStringAlloc(pCfg, "Path", &pszName);
    265265    if (RT_FAILURE(rc))
    266266        return PDMDRV_SET_ERROR(pDrvIns, rc, N_("Failed to query \"Path\" from the config"));
Note: See TracChangeset for help on using the changeset viewer.

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