aboutsummaryrefslogtreecommitdiff
path: root/block
diff options
context:
space:
mode:
authorMax Reitz <mreitz@redhat.com>2015-07-27 17:51:34 +0200
committerKevin Wolf <kwolf@redhat.com>2015-12-18 14:34:43 +0100
commit164e0f89cc825bf2a83b20451643db333d2891a7 (patch)
tree8378e85ca881fd6053d429cfa22abb4dc7499de1 /block
parent29d72431ef7a68977a809727988285654887263f (diff)
downloadqemu-164e0f89cc825bf2a83b20451643db333d2891a7.zip
qemu-164e0f89cc825bf2a83b20451643db333d2891a7.tar.gz
qemu-164e0f89cc825bf2a83b20451643db333d2891a7.tar.bz2
qcow2: Use abort() instead of assert(false)
Signed-off-by: Max Reitz <mreitz@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Alberto Garcia <berto@igalia.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block')
-rw-r--r--block/qcow2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/block/qcow2.c b/block/qcow2.c
index 01b20d9..381b4f7 100644
--- a/block/qcow2.c
+++ b/block/qcow2.c
@@ -2998,9 +2998,9 @@ static int qcow2_amend_options(BlockDriverState *bs, QemuOpts *opts,
error_report("Cannot change refcount entry width");
return -ENOTSUP;
} else {
- /* if this assertion fails, this probably means a new option was
+ /* if this point is reached, this probably means a new option was
* added without having it covered here */
- assert(false);
+ abort();
}
desc++;