All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] Fix spelling in comments and debug messages (recieve -> receive)
@ 2011-08-28 19:45 Stefan Weil
  2011-08-28 20:13 ` Andreas Färber
  2011-08-29 10:48 ` [Qemu-devel] [Qemu-trivial] " Stefan Hajnoczi
  0 siblings, 2 replies; 3+ messages in thread
From: Stefan Weil @ 2011-08-28 19:45 UTC (permalink / raw)
  To: QEMU Developers; +Cc: qemu-trivial

Signed-off-by: Stefan Weil <weil@mail.berlios.de>
---
 docs/qapi-code-gen.txt |    2 +-
 libcacard/vscclient.c  |    2 +-
 qemu-ga.c              |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/qapi-code-gen.txt b/docs/qapi-code-gen.txt
index b7befb5..f345866 100644
--- a/docs/qapi-code-gen.txt
+++ b/docs/qapi-code-gen.txt
@@ -229,7 +229,7 @@ in the schema. The following files are generated:
 $(prefix)qmp-marshal.c: command marshal/dispatch functions for each
                         QMP command defined in the schema. Functions
                         generated by qapi-visit.py are used to
-                        convert QObjects recieved from the wire into
+                        convert QObjects received from the wire into
                         function parameters, and uses the same
                         visitor functions to convert native C return
                         values to QObjects from transmission back
diff --git a/libcacard/vscclient.c b/libcacard/vscclient.c
index a7b3834..2191f60 100644
--- a/libcacard/vscclient.c
+++ b/libcacard/vscclient.c
@@ -585,7 +585,7 @@ main(
                 printf(" recv APDU: ");
                 print_byte_array(pbSendBuffer, mhHeader.length);
             }
-            /* Transmit recieved APDU */
+            /* Transmit received APDU */
             dwSendLength = mhHeader.length;
             dwRecvLength = sizeof(pbRecvBuffer);
             reader = vreader_get_reader_by_id(mhHeader.reader_id);
diff --git a/qemu-ga.c b/qemu-ga.c
index 858d75a..4932013 100644
--- a/qemu-ga.c
+++ b/qemu-ga.c
@@ -51,7 +51,7 @@ static struct GAState *ga_state;
 
 static void quit_handler(int sig)
 {
-    g_debug("recieved signal num %d, quitting", sig);
+    g_debug("received signal num %d, quitting", sig);
 
     if (g_main_loop_is_running(ga_state->main_loop)) {
         g_main_loop_quit(ga_state->main_loop);
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Qemu-devel] [PATCH] Fix spelling in comments and debug messages (recieve -> receive)
  2011-08-28 19:45 [Qemu-devel] [PATCH] Fix spelling in comments and debug messages (recieve -> receive) Stefan Weil
@ 2011-08-28 20:13 ` Andreas Färber
  2011-08-29 10:48 ` [Qemu-devel] [Qemu-trivial] " Stefan Hajnoczi
  1 sibling, 0 replies; 3+ messages in thread
From: Andreas Färber @ 2011-08-28 20:13 UTC (permalink / raw)
  To: Stefan Weil; +Cc: qemu-trivial, QEMU Developers

Am 28.08.2011 um 21:45 schrieb Stefan Weil:

> Signed-off-by: Stefan Weil <weil@mail.berlios.de>

Reviewed-by: Andreas Färber <andreas.faerber@web.de>

Thanks,
Andreas

> ---
> docs/qapi-code-gen.txt |    2 +-
> libcacard/vscclient.c  |    2 +-
> qemu-ga.c              |    2 +-
> 3 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/docs/qapi-code-gen.txt b/docs/qapi-code-gen.txt
> index b7befb5..f345866 100644
> --- a/docs/qapi-code-gen.txt
> +++ b/docs/qapi-code-gen.txt
> @@ -229,7 +229,7 @@ in the schema. The following files are generated:
> $(prefix)qmp-marshal.c: command marshal/dispatch functions for each
>                         QMP command defined in the schema. Functions
>                         generated by qapi-visit.py are used to
> -                        convert QObjects recieved from the wire into
> +                        convert QObjects received from the wire into
>                         function parameters, and uses the same
>                         visitor functions to convert native C return
>                         values to QObjects from transmission back
> diff --git a/libcacard/vscclient.c b/libcacard/vscclient.c
> index a7b3834..2191f60 100644
> --- a/libcacard/vscclient.c
> +++ b/libcacard/vscclient.c
> @@ -585,7 +585,7 @@ main(
>                 printf(" recv APDU: ");
>                 print_byte_array(pbSendBuffer, mhHeader.length);
>             }
> -            /* Transmit recieved APDU */
> +            /* Transmit received APDU */
>             dwSendLength = mhHeader.length;
>             dwRecvLength = sizeof(pbRecvBuffer);
>             reader = vreader_get_reader_by_id(mhHeader.reader_id);
> diff --git a/qemu-ga.c b/qemu-ga.c
> index 858d75a..4932013 100644
> --- a/qemu-ga.c
> +++ b/qemu-ga.c
> @@ -51,7 +51,7 @@ static struct GAState *ga_state;
>
> static void quit_handler(int sig)
> {
> -    g_debug("recieved signal num %d, quitting", sig);
> +    g_debug("received signal num %d, quitting", sig);
>
>     if (g_main_loop_is_running(ga_state->main_loop)) {
>         g_main_loop_quit(ga_state->main_loop);
> -- 
> 1.7.2.5

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Qemu-devel] [Qemu-trivial] [PATCH] Fix spelling in comments and debug messages (recieve -> receive)
  2011-08-28 19:45 [Qemu-devel] [PATCH] Fix spelling in comments and debug messages (recieve -> receive) Stefan Weil
  2011-08-28 20:13 ` Andreas Färber
@ 2011-08-29 10:48 ` Stefan Hajnoczi
  1 sibling, 0 replies; 3+ messages in thread
From: Stefan Hajnoczi @ 2011-08-29 10:48 UTC (permalink / raw)
  To: Stefan Weil; +Cc: qemu-trivial, QEMU Developers

On Sun, Aug 28, 2011 at 09:45:40PM +0200, Stefan Weil wrote:
> Signed-off-by: Stefan Weil <weil@mail.berlios.de>
> ---
>  docs/qapi-code-gen.txt |    2 +-
>  libcacard/vscclient.c  |    2 +-
>  qemu-ga.c              |    2 +-
>  3 files changed, 3 insertions(+), 3 deletions(-)

Thanks, applied to the trivial patches tree:
http://repo.or.cz/w/qemu/stefanha.git/shortlog/refs/heads/trivial-patches

Stefan

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-08-29 10:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-28 19:45 [Qemu-devel] [PATCH] Fix spelling in comments and debug messages (recieve -> receive) Stefan Weil
2011-08-28 20:13 ` Andreas Färber
2011-08-29 10:48 ` [Qemu-devel] [Qemu-trivial] " Stefan Hajnoczi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.