Update vbox_vboxmanage.cpp

Added a space at the end of each command string.
This commit is contained in:
computezrmle 2024-03-20 13:08:14 +01:00 committed by GitHub
parent d4c2cb278e
commit c849232a66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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 ";
}