vl.c: Small coding style fix

Just to make checkpatch.pl happy when moving the code.

Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Eduardo Habkost 2014-09-26 17:45:16 -03:00 committed by Paolo Bonzini
parent 01ca519f24
commit 2067444945
1 changed files with 1 additions and 1 deletions

2
vl.c
View File

@ -2712,7 +2712,7 @@ static int configure_accelerator(MachineClass *mc)
if (*p == ':') {
p++;
}
p = get_opt_name(buf, sizeof (buf), p, ':');
p = get_opt_name(buf, sizeof(buf), p, ':');
for (i = 0; i < ARRAY_SIZE(accel_list); i++) {
if (strcmp(accel_list[i].opt_name, buf) == 0) {
if (!accel_list[i].available()) {