From 09933f9dbe955bc9bba0419701af7423d28723ee Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Thu, 17 Oct 2013 15:13:47 -0400 Subject: [PATCH] VBOX: Fix build break --- samples/vboxwrapper/vbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/vboxwrapper/vbox.cpp b/samples/vboxwrapper/vbox.cpp index a38fdb3a81..34aba31ad5 100644 --- a/samples/vboxwrapper/vbox.cpp +++ b/samples/vboxwrapper/vbox.cpp @@ -1004,7 +1004,7 @@ int VBOX_VM::register_vm() { command += "--add \"" + vm_disk_controller_type + "\" "; command += "--controller \"" + vm_disk_controller_model + "\" "; command += "--hostiocache off "; - if ((vm_disk_controller_type == "sata") || (vm_disk_controller_type == "SATA") { + if ((vm_disk_controller_type == "sata") || (vm_disk_controller_type == "SATA")) { command += "--sataportcount 1 "; }