Changeset 2905 in vbox
- Timestamp:
- May 29, 2007 10:42:35 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
r2902 r2905 884 884 szError[0] = '\0'; 885 885 else 886 RTStrPrintfV(szError, sizeof(szError), pszFormat, args); 886 { 887 RTStrPrintf(szError, sizeof(szError), 888 "%N!\nVBox status code: %d (%Vrc)", pszFormat, &args, rc, rc); 889 RTPrintf("%s\n", szError); 890 } 887 891 } 888 892 … … 986 990 */ 987 991 if (VBOX_FAILURE(rc)) 988 {989 992 goto failure; 990 } 993 991 994 return 0; 992 993 995 994 996 failure: … … 1000 1002 } 1001 1003 machineState = VMSTATE_TERMINATED; 1004 1002 1005 return 0; 1003 1006 }
Note:
See TracChangeset
for help on using the changeset viewer.