kvm tools: Kill redundant assignment in qcow1_read_cluster()

Signed-off-by: Pekka Enberg <penberg@kernel.org>
This commit is contained in:
Pekka Enberg
2015-06-01 16:39:42 +01:00
committed by Will Deacon
parent 4baf6f73fc
commit dae803fb59
+1 -1
View File
@@ -51,7 +51,7 @@ static u32 qcow1_read_cluster(struct qcow *q, u64 offset, void *dst,
u64 l2_idx;
u32 length;
length = cluster_size = 1 << header->cluster_bits;
cluster_size = 1 << header->cluster_bits;
l1_idx = get_l1_index(q, offset);
if (l1_idx >= table->table_size)