From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56280) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eKEpK-0000c3-LJ for qemu-devel@nongnu.org; Wed, 29 Nov 2017 21:43:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eKEpJ-000849-U9 for qemu-devel@nongnu.org; Wed, 29 Nov 2017 21:43:50 -0500 Date: Thu, 30 Nov 2017 10:43:39 +0800 From: Fam Zheng Message-ID: <20171130024333.GD16237@lemon> References: <20171123020832.8165-1-mreitz@redhat.com> <20171123020832.8165-2-mreitz@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20171123020832.8165-2-mreitz@redhat.com> Subject: Re: [Qemu-devel] [PATCH 01/17] block/vmdk: Fix , instead of ; at end of line List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Max Reitz Cc: qemu-block@nongnu.org, qemu-devel@nongnu.org, Kevin Wolf , John Snow On Thu, 11/23 03:08, Max Reitz wrote: > Signed-off-by: Max Reitz > --- > block/vmdk.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/block/vmdk.c b/block/vmdk.c > index c665bcc977..1ae47b1c2e 100644 > --- a/block/vmdk.c > +++ b/block/vmdk.c > @@ -1398,7 +1398,7 @@ static int vmdk_write_extent(VmdkExtent *extent, int64_t cluster_offset, > qemu_iovec_concat(&local_qiov, qiov, qiov_offset, n_bytes); > } > > - write_offset = cluster_offset + offset_in_cluster, > + write_offset = cluster_offset + offset_in_cluster; > ret = bdrv_co_pwritev(extent->file, write_offset, n_bytes, > &local_qiov, 0); > > -- > 2.13.6 > Reviewed-by: Fam Zheng