diff mbox

vl.c: Fix typo in variable name

Message ID 1328648247-30117-1-git-send-email-peter.maydell@linaro.org
State Accepted
Commit 1b785a975830993fff988028d90f2b55b2ab41f0
Headers show

Commit Message

Peter Maydell Feb. 7, 2012, 8:57 p.m. UTC
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(-)

Comments

Stefan Weil Feb. 7, 2012, 9:20 p.m. UTC | #1
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>
Stefan Hajnoczi Feb. 9, 2012, 8:45 a.m. UTC | #2
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 mbox

Patch

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)