* [Qemu-devel] [PATCH] vl.c: Fix typo in variable name
@ 2012-02-07 20:57 Peter Maydell
2012-02-07 21:20 ` Stefan Weil
2012-02-09 8:45 ` Stefan Hajnoczi
0 siblings, 2 replies; 3+ messages in thread
From: Peter Maydell @ 2012-02-07 20:57 UTC (permalink / raw)
To: qemu-devel; +Cc: qemu-trivial, patches
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;
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)
--
1.7.5.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] vl.c: Fix typo in variable name
2012-02-07 20:57 [Qemu-devel] [PATCH] vl.c: Fix typo in variable name Peter Maydell
@ 2012-02-07 21:20 ` Stefan Weil
2012-02-09 8:45 ` Stefan Hajnoczi
1 sibling, 0 replies; 3+ messages in thread
From: Stefan Weil @ 2012-02-07 21:20 UTC (permalink / raw)
To: Peter Maydell; +Cc: qemu-trivial, qemu-devel, patches
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>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] vl.c: Fix typo in variable name
2012-02-07 20:57 [Qemu-devel] [PATCH] vl.c: Fix typo in variable name Peter Maydell
2012-02-07 21:20 ` Stefan Weil
@ 2012-02-09 8:45 ` Stefan Hajnoczi
1 sibling, 0 replies; 3+ messages in thread
From: Stefan Hajnoczi @ 2012-02-09 8:45 UTC (permalink / raw)
To: Peter Maydell; +Cc: qemu-trivial, qemu-devel, patches
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
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-02-09 9:22 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-07 20:57 [Qemu-devel] [PATCH] vl.c: Fix typo in variable name Peter Maydell
2012-02-07 21:20 ` Stefan Weil
2012-02-09 8:45 ` Stefan Hajnoczi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).