qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
To: qemu-devel@nongnu.org
Cc: Anthony Liguori <aliguori@us.ibm.com>,
	Dong Xu Wang <wdongxu@linux.vnet.ibm.com>,
	Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Subject: [Qemu-devel] [PATCH 05/15] fix spelling in darwin-user sub directory
Date: Fri,  2 Dec 2011 13:50:23 +0000	[thread overview]
Message-ID: <1322833833-9969-6-git-send-email-stefanha@linux.vnet.ibm.com> (raw)
In-Reply-To: <1322833833-9969-1-git-send-email-stefanha@linux.vnet.ibm.com>

From: Dong Xu Wang <wdongxu@linux.vnet.ibm.com>

Signed-off-by: Dong Xu Wang <wdongxu@linux.vnet.ibm.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
---
 darwin-user/machload.c |    6 +++---
 darwin-user/main.c     |    2 +-
 darwin-user/syscall.c  |    2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/darwin-user/machload.c b/darwin-user/machload.c
index 0aa8282..26dd293 100644
--- a/darwin-user/machload.c
+++ b/darwin-user/machload.c
@@ -460,7 +460,7 @@ int load_object(const char *filename, struct target_pt_regs * regs, void ** mh)
     int mach_hdr_pos = 0;
     struct mach_header mach_hdr;
 
-    /* for symbol lookup whith -d flag. */
+    /* for symbol lookup with -d flag. */
     struct symtab_command *    symtabcmd = 0;
     struct nlist_extended *symtab, *sym;
     struct nlist     *symtab_std, *syment;
@@ -645,7 +645,7 @@ int load_object(const char *filename, struct target_pt_regs * regs, void ** mh)
             case LC_PREBIND_CKSUM:
             case LC_SUB_LIBRARY:
                 break;
-            default: fprintf(stderr, "warning: unkown command 0x%x in '%s'\n", lc->cmd, filename);
+            default: fprintf(stderr, "warning: unknown command 0x%x in '%s'\n", lc->cmd, filename);
         }
         lc = (struct load_command*)((int)(lc)+(lc->cmdsize));
     }
@@ -809,7 +809,7 @@ unsigned long setup_arg_pages(void * mh, char ** argv, char ** env)
         page_set_flags((int)env[i], (int)(env[i]+strlen(env[i])), PROT_READ | PAGE_VALID);
     }
 
-    /* Add on the stack the interp_prefix choosen if so */
+    /* Add on the stack the interp_prefix chosen if so */
     if(interp_prefix[0])
     {
         char *dyld_root;
diff --git a/darwin-user/main.c b/darwin-user/main.c
index c0f14f8..9b57c20 100644
--- a/darwin-user/main.c
+++ b/darwin-user/main.c
@@ -394,7 +394,7 @@ void cpu_loop(CPUPPCState *env)
             queue_signal(info.si_signo, &info);
             break;
         case POWERPC_EXCP_PIT:      /* Programmable interval timer IRQ       */
-            cpu_abort(env, "Programable interval timer interrupt "
+            cpu_abort(env, "Programmable interval timer interrupt "
                       "while in user mode. Aborting\n");
             break;
         case POWERPC_EXCP_IO:       /* IO error exception                    */
diff --git a/darwin-user/syscall.c b/darwin-user/syscall.c
index f3cc1f83..8a16883 100644
--- a/darwin-user/syscall.c
+++ b/darwin-user/syscall.c
@@ -755,7 +755,7 @@ struct attrbuf_header {
 
 static inline void byteswap_attrbuf(struct attrbuf_header *attrbuf, struct attrlist *attrlist)
 {
-    DPRINTF("attrBuf.lenght %lx\n", attrbuf->length);
+    DPRINTF("attrBuf.length %lx\n", attrbuf->length);
 }
 
 static inline void byteswap_statfs(struct statfs *s)
-- 
1.7.7.3

  parent reply	other threads:[~2011-12-02 13:52 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-12-02 13:50 [Qemu-devel] [PULL 00/15] Trivial patches for 24 November to 2 December 2011 Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 01/15] sonic: fix typo Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 02/15] qxl: Don't convert from size_t to int and back in qxl_cursor() Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 03/15] MAINTAINERS: Delete spurious '.' Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 04/15] darwin-user: Fix format string in debug message Stefan Hajnoczi
2011-12-02 13:50 ` Stefan Hajnoczi [this message]
2011-12-02 13:50 ` [Qemu-devel] [PATCH 06/15] fix spelling in linux-user sub directory Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 07/15] fix spelling in libcacard " Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 08/15] fix spelling in QMP " Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 09/15] fix spelling in scripts " Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 10/15] fix spelling in target " Stefan Hajnoczi
2011-12-02 13:59   ` Alexander Graf
2011-12-02 13:50 ` [Qemu-devel] [PATCH 11/15] fix spelling in tcg " Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 12/15] fix spelling in tests " Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 13/15] fix spelling in ui " Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 14/15] fix spelling in block " Stefan Hajnoczi
2011-12-02 13:50 ` [Qemu-devel] [PATCH 15/15] fix spelling in main directory Stefan Hajnoczi
2011-12-05 15:31 ` [Qemu-devel] [PULL 00/15] Trivial patches for 24 November to 2 December 2011 Anthony Liguori

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1322833833-9969-6-git-send-email-stefanha@linux.vnet.ibm.com \
    --to=stefanha@linux.vnet.ibm.com \
    --cc=aliguori@us.ibm.com \
    --cc=qemu-devel@nongnu.org \
    --cc=wdongxu@linux.vnet.ibm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).