diff options
author | Max Reitz <mreitz@redhat.com> | 2013-10-09 14:40:48 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2013-10-11 16:49:59 +0200 |
commit | 9e3f08923a14ba0655c6797edd9ffef44bb8cbf2 (patch) | |
tree | 40cde76f4749b7e338b6e5451eba9aafaefe6c75 /block/qcow2.c | |
parent | 89e911816a1d5cdbc9480d5464c571d216cf5ea8 (diff) |
qcow2: Add missing space in error message
The error message in qcow2_downgrade about an unsupported refcount
order is missing a space. This patch adds it.
Signed-off-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block/qcow2.c')
-rw-r--r-- | block/qcow2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/qcow2.c b/block/qcow2.c index e8d2735be7..9095f7ca6e 100644 --- a/block/qcow2.c +++ b/block/qcow2.c @@ -1915,7 +1915,7 @@ static int qcow2_downgrade(BlockDriverState *bs, int target_version) * support anything different than 4 anyway, there is no point in doing * so right now; however, we should error out (if qemu supports this in * the future and this code has not been adapted) */ - error_report("qcow2_downgrade: Image refcount orders other than 4 are" + error_report("qcow2_downgrade: Image refcount orders other than 4 are " "currently not supported."); return -ENOTSUP; } |