Changeset 29807 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- May 26, 2010 10:13:20 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 62016
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
r29786 r29807 322 322 if (FAILED(rc)) 323 323 { 324 /* If we got a VBOX_E_IPRT error we handle the error in a more gentle way 325 * because it contains more accurate info about what went wrong. */ 324 326 ErrorInfo info(guest); 325 327 if (info.isFullAvailable()) 326 RTPrintf("ERROR: %ls (%Rhrc).\n", info.getText().raw(), info.getResultCode()); 328 { 329 if (rc == VBOX_E_IPRT_ERROR) 330 { 331 RTPrintf("%ls.\n", info.getText().raw()); 332 } 333 else 334 { 335 RTPrintf("ERROR: %ls (%Rhrc).\n", info.getText().raw(), info.getResultCode()); 336 } 337 } 327 338 break; 328 339 }
Note:
See TracChangeset
for help on using the changeset viewer.