VBOX: Fix typos in launch_vboxvm() logic. It isn't currently used, but I do want to try and get that working at some point in the future.

This commit is contained in:
Rom Walton 2014-07-02 23:41:58 -04:00
parent 0c5c1ca933
commit 124223fd41
1 changed files with 2 additions and 1 deletions

View File

@ -2611,7 +2611,7 @@ int VBOX_VM::launch_vboxvm() {
&si,
&pi
)) {
vboxwrapper_msg_prefix(buf, sizeof(buf)),
vboxwrapper_msg_prefix(buf, sizeof(buf));
fprintf(
stderr,
"%s Status Report: Launching virtualbox.exe/vboxheadless.exe failed!.\n"
@ -2621,6 +2621,7 @@ int VBOX_VM::launch_vboxvm() {
windows_format_error_string(GetLastError(), error_msg, sizeof(error_msg)),
GetLastError()
);
goto CLEANUP;
}