Skip to content

Commit

Permalink
Update vbox_vboxmanage.cpp
Browse files Browse the repository at this point in the history
Added a space at the end of each command string.
  • Loading branch information
computezrmle authored Mar 20, 2024
1 parent d4c2cb2 commit c849232
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/vboxwrapper/vbox_vboxmanage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -354,9 +354,9 @@ int VBOX_VM::create_vm() {
vboxlog_msg("Disabling Audio Support for VM.");
command = "modifyvm \"" + vm_name + "\" ";
if (is_virtualbox_version_newer(7, 0, 4)) {
command += "--audio-enabled off";
command += "--audio-enabled off ";
} else {
command += "--audio none";
command += "--audio none ";
}


Expand Down

0 comments on commit c849232

Please sign in to comment.