From f9279627f93837ad30c2a89e43c934d59e6e9394 Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Tue, 29 Sep 2015 16:57:23 -0400 Subject: [PATCH] VBOX: Fix build break when building a debug version of vboxwrapper --- samples/vboxwrapper/vbox_common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/vboxwrapper/vbox_common.cpp b/samples/vboxwrapper/vbox_common.cpp index 067731e508..66afaaf103 100644 --- a/samples/vboxwrapper/vbox_common.cpp +++ b/samples/vboxwrapper/vbox_common.cpp @@ -712,7 +712,7 @@ int VBOX_BASE::launch_vboxsvc() { vboxlog_msg("Status Report: Launching vboxsvc.exe failed!."); vboxlog_msg(" Error: %s", windows_format_error_string(GetLastError(), buf, sizeof(buf))); #ifdef _DEBUG - vboxlog_msg("Vbox Version: '%s'", virtualbox_version.c_str()); + vboxlog_msg("Vbox Version: '%s'", virtualbox_version_raw.c_str()); vboxlog_msg("Vbox Install Directory: '%s'", virtualbox_install_directory.c_str()); vboxlog_msg("Vbox Home Directory: '%s'", virtualbox_home_directory.c_str()); #endif