From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O8Jtl-00061j-Ec for qemu-devel@nongnu.org; Sat, 01 May 2010 17:06:53 -0400 Received: from [140.186.70.92] (port=46553 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O8Jtk-00060O-5K for qemu-devel@nongnu.org; Sat, 01 May 2010 17:06:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O8Jti-0006D4-KZ for qemu-devel@nongnu.org; Sat, 01 May 2010 17:06:51 -0400 Received: from mail-pz0-f204.google.com ([209.85.222.204]:41711) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O8Jti-0006Cz-BI for qemu-devel@nongnu.org; Sat, 01 May 2010 17:06:50 -0400 Received: by pzk42 with SMTP id 42so687899pzk.4 for ; Sat, 01 May 2010 14:06:49 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <1272458521-21824-1-git-send-email-thomas_ml@monjalon.net> References: <1272458521-21824-1-git-send-email-thomas_ml@monjalon.net> Date: Sun, 2 May 2010 00:06:49 +0300 Message-ID: Subject: Re: [Qemu-devel] [PATCH] fix old typos in help header From: Blue Swirl Content-Type: text/plain; charset=UTF-8 List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Thomas Monjalon Cc: qemu-devel@nongnu.org Thanks, applied. On 4/28/10, Thomas Monjalon wrote: > From: Thomas Monjalon > > 1) Qemu is not only a PC emulator. > 2) "image image" has already been changed to "disk image" in qemu-doc.texi > > Signed-off-by: Thomas Monjalon > --- > vl.c | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/vl.c b/vl.c > index a485c58..5e03b72 100644 > --- a/vl.c > +++ b/vl.c > @@ -2001,7 +2001,7 @@ static void main_loop(void) > > static void version(void) > { > - printf("QEMU PC emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n"); > + printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n"); > } > > static void help(int exitcode) > @@ -2018,7 +2018,7 @@ static void help(int exitcode) > version(); > printf("usage: %s [options] [disk_image]\n" > "\n" > - "'disk_image' is a raw hard image image for IDE hard disk 0\n" > + "'disk_image' is a raw hard disk image for IDE hard disk 0\n" > "\n" > "%s\n" > "During emulation, the following keys are useful:\n" > > -- > 1.7.1 > > > > > >