From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NE0fQ-0001aI-Bk for qemu-devel@nongnu.org; Fri, 27 Nov 2009 08:15:20 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NE0fL-0001ZP-Of for qemu-devel@nongnu.org; Fri, 27 Nov 2009 08:15:19 -0500 Received: from [199.232.76.173] (port=57452 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NE0fL-0001ZK-9s for qemu-devel@nongnu.org; Fri, 27 Nov 2009 08:15:15 -0500 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:50893) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.60) (envelope-from ) id 1NE0fK-0004hG-Mp for qemu-devel@nongnu.org; Fri, 27 Nov 2009 08:15:15 -0500 From: Pierre Riteau Date: Fri, 27 Nov 2009 14:14:56 +0100 Message-Id: <1259327696-29540-1-git-send-email-Pierre.Riteau@irisa.fr> Subject: [Qemu-devel] [PATCH] Fix description of size parameter in qemu-img's help text List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Pierre Riteau Valid description taken from qemu-img.texi, although it would be better to have this information recorded in only one place. Signed-off-by: Pierre Riteau --- qemu-img.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/qemu-img.c b/qemu-img.c index 972843a..5123f98 100644 --- a/qemu-img.c +++ b/qemu-img.c @@ -72,9 +72,9 @@ static void help(void) "Command parameters:\n" " 'filename' is a disk image filename\n" " 'fmt' is the disk image format. It is guessed automatically in most cases\n" - " 'size' is the disk image size in kilobytes. Optional suffixes\n" - " 'M' (megabyte, 1024 * 1024) and 'G' (gigabyte, 1024 * 1024 * 1024) are\n" - " supported any 'k' or 'K' is ignored\n" + " 'size' is the disk image size in bytes. Optional suffixes\n" + " 'k' or 'K' (kilobyte, 1024), 'M' (megabyte, 1024k), 'G' (gigabyte, 1024M)\n" + " and T (terabyte, 1024G) are supported. 'b' is ignored.\n" " 'output_filename' is the destination disk image filename\n" " 'output_fmt' is the destination format\n" " 'options' is a comma separated list of format specific options in a\n" -- 1.6.5