Changeset 26173 in vbox for trunk/src/VBox/Devices/Storage/DrvRawImage.cpp
- Timestamp:
- Feb 2, 2010 9:11:09 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DrvRawImage.cpp
r26166 r26173 268 268 * @copydoc FNPDMDRVCONSTRUCT 269 269 */ 270 static DECLCALLBACK(int) drvRawImageConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg Handle, uint32_t fFlags)270 static DECLCALLBACK(int) drvRawImageConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags) 271 271 { 272 272 PDRVRAWIMAGE pThis = PDMINS_2_DATA(pDrvIns, PDRVRAWIMAGE); … … 295 295 * Read the configuration. 296 296 */ 297 if (!CFGMR3AreValuesValid(pCfg Handle, "Path\0"))297 if (!CFGMR3AreValuesValid(pCfg, "Path\0")) 298 298 return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES; 299 299 300 300 char *pszName; 301 int rc = CFGMR3QueryStringAlloc(pCfg Handle, "Path", &pszName);301 int rc = CFGMR3QueryStringAlloc(pCfg, "Path", &pszName); 302 302 if (RT_FAILURE(rc)) 303 303 {
Note:
See TracChangeset
for help on using the changeset viewer.