Changeset 39984 in vbox for trunk/src/VBox/ImageMounter
- Timestamp:
- Feb 3, 2012 1:07:56 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76084
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ImageMounter/VBoxFUSE/VBoxFUSE.cpp
r38636 r39984 43 43 #endif 44 44 45 #include <VBox/ VBoxHDD.h>45 #include <VBox/vd.h> 46 46 #include <VBox/log.h> 47 47 #include <VBox/err.h> … … 520 520 */ 521 521 char *pszFormat; 522 rc = VDGetFormat(NULL /* pVDIIfsDisk */, pszImage, &pszFormat); 522 VDTYPE enmType; 523 rc = VDGetFormat(NULL /* pVDIIfsDisk */, NULL /* pVDIIfsImage*/, pszImage, &pszFormat, &enmType); 523 524 if (RT_FAILURE(rc)) 524 525 { … … 528 529 529 530 PVBOXHDD pDisk = NULL; 530 rc = VDCreate(NULL /* pVDIIfsDisk */, &pDisk);531 rc = VDCreate(NULL /* pVDIIfsDisk */, enmType, &pDisk); 531 532 if (RT_SUCCESS(rc)) 532 533 {
Note:
See TracChangeset
for help on using the changeset viewer.