From: Max Reitz Date: Thu, 23 Nov 2017 02:08:16 +0000 (+0100) Subject: block/vmdk: Fix , instead of ; at end of line X-Git-Tag: v2.12.0-rc0~138^2^2~18 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=3c363575dc5fe325a8b16b1a18e1fa48120df6b6;p=users%2Fdwmw2%2Fqemu.git block/vmdk: Fix , instead of ; at end of line Signed-off-by: Max Reitz Message-id: 20171123020832.8165-2-mreitz@redhat.com Reviewed-by: Eric Blake Reviewed-by: Fam Zheng Signed-off-by: Max Reitz --- 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);