Changeset 22982 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Sep 13, 2009 10:17:34 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxInternalManage.cpp
r22173 r22982 510 510 /* just try it */ 511 511 char *pszFormat = NULL; 512 int rc = VDGetFormat( argv[0], &pszFormat);512 int rc = VDGetFormat(NULL, argv[0], &pszFormat); 513 513 if (RT_FAILURE(rc)) 514 514 { … … 578 578 /* just try it */ 579 579 char *pszFormat = NULL; 580 int rc = VDGetFormat( argv[0], &pszFormat);580 int rc = VDGetFormat(NULL, argv[0], &pszFormat); 581 581 if (RT_FAILURE(rc)) 582 582 { … … 1519 1519 { 1520 1520 char *pszFormat = NULL; 1521 vrc = VDGetFormat( Utf8Str(src).raw(), &pszFormat);1521 vrc = VDGetFormat(NULL, Utf8Str(src).raw(), &pszFormat); 1522 1522 if (RT_FAILURE(vrc)) 1523 1523 { … … 1666 1666 { 1667 1667 char *pszFormat = NULL; 1668 vrc = VDGetFormat( Utf8Str(src).raw(), &pszFormat);1668 vrc = VDGetFormat(NULL, Utf8Str(src).raw(), &pszFormat); 1669 1669 if (RT_FAILURE(vrc)) 1670 1670 {
Note:
See TracChangeset
for help on using the changeset viewer.