vl.c: Fix typo in variable name

Fix a typo in a local variable name.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
This commit is contained in:
Peter Maydell 2012-02-07 20:57:27 +00:00 committed by Stefan Hajnoczi
parent cb67be85a6
commit 1b785a9758

10
vl.c
View File

@ -2030,7 +2030,7 @@ static int configure_accelerator(void)
const char *p = NULL; const char *p = NULL;
char buf[10]; char buf[10];
int i, ret; int i, ret;
bool accel_initalised = 0; bool accel_initialised = 0;
bool init_failed = 0; bool init_failed = 0;
QemuOptsList *list = qemu_find_opts("machine"); QemuOptsList *list = qemu_find_opts("machine");
@ -2043,7 +2043,7 @@ static int configure_accelerator(void)
p = "tcg"; p = "tcg";
} }
while (!accel_initalised && *p != '\0') { while (!accel_initialised && *p != '\0') {
if (*p == ':') { if (*p == ':') {
p++; p++;
} }
@ -2064,7 +2064,7 @@ static int configure_accelerator(void)
} }
*(accel_list[i].allowed) = 0; *(accel_list[i].allowed) = 0;
} else { } else {
accel_initalised = 1; accel_initialised = 1;
} }
break; break;
} }
@ -2074,7 +2074,7 @@ static int configure_accelerator(void)
} }
} }
if (!accel_initalised) { if (!accel_initialised) {
fprintf(stderr, "No accelerator found!\n"); fprintf(stderr, "No accelerator found!\n");
exit(1); exit(1);
} }
@ -2083,7 +2083,7 @@ static int configure_accelerator(void)
fprintf(stderr, "Back to %s accelerator.\n", accel_list[i].name); fprintf(stderr, "Back to %s accelerator.\n", accel_list[i].name);
} }
return !accel_initalised; return !accel_initialised;
} }
void qemu_add_exit_notifier(Notifier *notify) void qemu_add_exit_notifier(Notifier *notify)