diff options
author | Max Reitz <mreitz@redhat.com> | 2015-07-27 17:51:34 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2015-12-18 14:34:43 +0100 |
commit | 164e0f89cc825bf2a83b20451643db333d2891a7 (patch) | |
tree | 8378e85ca881fd6053d429cfa22abb4dc7499de1 | |
parent | 29d72431ef7a68977a809727988285654887263f (diff) | |
download | qemu-164e0f89cc825bf2a83b20451643db333d2891a7.tar.gz qemu-164e0f89cc825bf2a83b20451643db333d2891a7.tar.bz2 qemu-164e0f89cc825bf2a83b20451643db333d2891a7.zip |
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>
-rw-r--r-- | block/qcow2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/block/qcow2.c b/block/qcow2.c index 01b20d91cf..381b4f7ed3 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++; |