Changeset 29786 in vbox for trunk/src/VBox
- Timestamp:
- May 25, 2010 1:59:53 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
r29785 r29786 449 449 } 450 450 451 if (fCanceled && fVerbose) 452 RTPrintf("Process execution canceled!\n"); 453 454 if (fCompleted) 451 if (fCanceled) 452 { 453 if (fVerbose) 454 RTPrintf("Process execution canceled!\n"); 455 } 456 else if (fCompleted) 455 457 { 456 458 LONG iRc = false; … … 471 473 RTPrintf("Exit code=%u (Status=%u [%s], Flags=%u)\n", uRetExitCode, uRetStatus, getStatus(uRetStatus), uRetFlags); 472 474 } 475 } 476 else /* If neither canceled nor completed we got a hard abort (shouldn't happen). */ 477 { 478 if (fVerbose) 479 RTPrintf("Process execution aborted!\n"); 473 480 } 474 481 }
Note:
See TracChangeset
for help on using the changeset viewer.