Changeset 94238 in vbox
- Timestamp:
- Mar 15, 2022 9:44:00 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageCloud.cpp
r94072 r94238 72 72 if (bstrProvider.isEmpty()) 73 73 { 74 errorSyntax( USAGE_S_NEWCMD,Cloud::tr("Parameter --provider is required"));74 errorSyntax(Cloud::tr("Parameter --provider is required")); 75 75 return E_FAIL; 76 76 } 77 77 if (bstrProfile.isEmpty()) 78 78 { 79 errorSyntax( USAGE_S_NEWCMD,Cloud::tr("Parameter --profile is required"));79 errorSyntax(Cloud::tr("Parameter --profile is required")); 80 80 return E_FAIL; 81 81 } … … 219 219 RTPrintf(Cloud::tr("Found the compartment \'%s\':\n"), strCompartmentId.c_str()); 220 220 else 221 return errorSyntax( USAGE_S_NEWCMD,Cloud::tr("Parameter --compartment-id is required"));221 return errorSyntax(Cloud::tr("Parameter --compartment-id is required")); 222 222 } 223 223 … … 380 380 RTPrintf(Cloud::tr("Found the compartment \'%s\':\n"), strCompartmentId.c_str()); 381 381 else 382 return errorSyntax( USAGE_S_NEWCMD,Cloud::tr("Parameter --compartment-id is required"));382 return errorSyntax(Cloud::tr("Parameter --compartment-id is required")); 383 383 } 384 384
Note:
See TracChangeset
for help on using the changeset viewer.