Changeset 67884 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Jul 10, 2017 4:42:37 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/SnapshotImpl.cpp
r67466 r67884 332 332 333 333 if (!test.isZero() && test.isValid()) 334 return setError(E_INVALIDARG, 334 return setError(E_INVALIDARG, tr("A machine cannot have a UUID as its name")); 335 335 336 336 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); … … 2900 2900 { 2901 2901 rc = setError(E_FAIL, 2902 tr(" Unable to merge storage '%s'. Can't get storage UID"),2902 tr("Unable to merge storage '%s'. Can't get storage UID"), 2903 2903 pTarget_local->i_getLocationFull().c_str()); 2904 2904 throw rc; … … 2933 2933 if (it_sm == serialMapToStoragePath.end()) 2934 2934 { 2935 LogFlowThisFunc((" Path to the storage wasn't found...\n"));2935 LogFlowThisFunc(("Path to the storage wasn't found...\n")); 2936 2936 2937 2937 rc = setError(E_INVALIDARG, 2938 tr(" Unable to merge storage '%s'. Path to the storage wasn't found."),2938 tr("Unable to merge storage '%s'. Path to the storage wasn't found"), 2939 2939 it_sm->second); 2940 2940 throw rc; … … 2945 2945 { 2946 2946 rc = setError(E_FAIL, 2947 tr(" Unable to merge storage '%s'. Can't get the storage size."),2947 tr("Unable to merge storage '%s'. Can't get the storage size"), 2948 2948 it_sm->second); 2949 2949 throw rc; … … 2952 2952 if (commonSourceStoragesSize > (uint64_t)pcbFree) 2953 2953 { 2954 LogFlowThisFunc((" Not enough free space to merge...\n"));2954 LogFlowThisFunc(("Not enough free space to merge...\n")); 2955 2955 2956 2956 rc = setError(E_OUTOFMEMORY, 2957 tr(" Unable to merge storage '%s' - not enough free storage space."),2957 tr("Unable to merge storage '%s'. Not enough free storage space"), 2958 2958 it_sm->second); 2959 2959 throw rc;
Note:
See TracChangeset
for help on using the changeset viewer.