From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:55610) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QqD4Q-0005Wg-Bv for qemu-devel@nongnu.org; Sun, 07 Aug 2011 19:47:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QqD4P-0002M2-F3 for qemu-devel@nongnu.org; Sun, 07 Aug 2011 19:47:50 -0400 Received: from mail-gy0-f173.google.com ([209.85.160.173]:34932) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QqD4P-0002Ly-CA for qemu-devel@nongnu.org; Sun, 07 Aug 2011 19:47:49 -0400 Received: by gyd12 with SMTP id 12so1844687gyd.4 for ; Sun, 07 Aug 2011 16:47:48 -0700 (PDT) From: Devin Nakamura Date: Sun, 7 Aug 2011 19:47:36 -0400 Message-Id: <1312760856-9314-1-git-send-email-devin122@gmail.com> Subject: [Qemu-devel] [PATCH] qcow2: fix typo in documentation for qcow2_get_cluster_offset() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, Devin Nakamura Documentation states the num is measured in clusters, but its actually measured in sectors Signed-off-by: Devin Nakamura --- block/qcow2-cluster.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/block/qcow2-cluster.c b/block/qcow2-cluster.c index 81cf77d..154597e 100644 --- a/block/qcow2-cluster.c +++ b/block/qcow2-cluster.c @@ -381,10 +381,10 @@ static int copy_sectors(BlockDriverState *bs, uint64_t start_sect, * For a given offset of the disk image, find the cluster offset in * qcow2 file. The offset is stored in *cluster_offset. * - * on entry, *num is the number of contiguous clusters we'd like to + * on entry, *num is the number of contiguous sectors we'd like to * access following offset. * - * on exit, *num is the number of contiguous clusters we can read. + * on exit, *num is the number of contiguous sectors we can read. * * Return 0, if the offset is found * Return -errno, otherwise. -- 1.7.6.rc1