Message ID | 1328648247-30117-1-git-send-email-peter.maydell@linaro.org |
---|---|
State | Accepted |
Commit | 1b785a975830993fff988028d90f2b55b2ab41f0 |
Headers | show |
Am 07.02.2012 21:57, schrieb Peter Maydell: > Fix a typo in a local variable name. > > Signed-off-by: Peter Maydell<peter.maydell@linaro.org> > --- > vl.c | 10 +++++----- > 1 files changed, 5 insertions(+), 5 deletions(-) > > diff --git a/vl.c b/vl.c > index 63dd725..c4b3aab 100644 > --- a/vl.c > +++ b/vl.c > @@ -2030,7 +2030,7 @@ static int configure_accelerator(void) > const char *p = NULL; > char buf[10]; > int i, ret; > - bool accel_initalised = 0; > + bool accel_initialised = 0; > bool init_failed = 0; > Reviewed-by: Stefan Weil <sw@weilnetz.de>
On Tue, Feb 07, 2012 at 08:57:27PM +0000, Peter Maydell wrote: > Fix a typo in a local variable name. > > Signed-off-by: Peter Maydell <peter.maydell@linaro.org> > --- > vl.c | 10 +++++----- > 1 files changed, 5 insertions(+), 5 deletions(-) Thanks, applied to the trivial patches tree: https://github.com/stefanha/qemu/commits/trivial-patches Stefan
diff --git a/vl.c b/vl.c index 63dd725..c4b3aab 100644 --- a/vl.c +++ b/vl.c @@ -2030,7 +2030,7 @@ static int configure_accelerator(void) const char *p = NULL; char buf[10]; int i, ret; - bool accel_initalised = 0; + bool accel_initialised = 0; bool init_failed = 0; QemuOptsList *list = qemu_find_opts("machine"); @@ -2043,7 +2043,7 @@ static int configure_accelerator(void) p = "tcg"; } - while (!accel_initalised && *p != '\0') { + while (!accel_initialised && *p != '\0') { if (*p == ':') { p++; } @@ -2064,7 +2064,7 @@ static int configure_accelerator(void) } *(accel_list[i].allowed) = 0; } else { - accel_initalised = 1; + accel_initialised = 1; } break; } @@ -2074,7 +2074,7 @@ static int configure_accelerator(void) } } - if (!accel_initalised) { + if (!accel_initialised) { fprintf(stderr, "No accelerator found!\n"); exit(1); } @@ -2083,7 +2083,7 @@ static int configure_accelerator(void) fprintf(stderr, "Back to %s accelerator.\n", accel_list[i].name); } - return !accel_initalised; + return !accel_initialised; } void qemu_add_exit_notifier(Notifier *notify)
Fix a typo in a local variable name. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> --- vl.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-)