Changeset 11138 in vbox for trunk/src/VBox
- Timestamp:
- Aug 5, 2008 4:13:26 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 34105
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxInternalManage.cpp
r11136 r11138 1351 1351 { 1352 1352 RTPrintf("Error while creating the virtual disk container: %Vrc\n", vrc); 1353 return vrc;1353 return 1; 1354 1354 } 1355 1355 … … 1365 1365 VDCloseAll(pDisk); 1366 1366 RTPrintf("Error while creating destination file \"%s\": %Vrc\n", Utf8Str(dst).raw(), vrc); 1367 return vrc;1367 return 1; 1368 1368 } 1369 1369 … … 1381 1381 } 1382 1382 RTPrintf("No file format specified and autodetect failed - please specify format: %Vrc\n", vrc); 1383 return vrc;1383 return 1; 1384 1384 } 1385 1385 srcformat = pszFormat; … … 1396 1396 } 1397 1397 RTPrintf("Error while opening the source image: %Vrc\n", vrc); 1398 return vrc;1398 return 1; 1399 1399 } 1400 1400 … … 1427 1427 } 1428 1428 RTPrintf("Error copying image data: %Vrc\n", vrc); 1429 return vrc;1429 return 1; 1430 1430 } 1431 1431 } … … 1440 1440 } 1441 1441 RTPrintf("Error allocating read buffer: %Vrc\n", vrc); 1442 return vrc;1442 return 1; 1443 1443 } 1444 1444 … … 1446 1446 RTFileClose(outFile); 1447 1447 VDCloseAll(pDisk); 1448 return vrc;1448 return 0; 1449 1449 } 1450 1450
Note:
See TracChangeset
for help on using the changeset viewer.