9ae3a8
From 6f9e5c8e3d7e3251af3e047e01ae38cc26b41a4e Mon Sep 17 00:00:00 2001
9ae3a8
From: Max Reitz <mreitz@redhat.com>
9ae3a8
Date: Tue, 7 Jan 2014 21:57:16 +0100
9ae3a8
Subject: [PATCH 11/14] qcow2: Add missing space in error message
9ae3a8
9ae3a8
RH-Author: Max Reitz <mreitz@redhat.com>
9ae3a8
Message-id: <1389131839-12920-12-git-send-email-mreitz@redhat.com>
9ae3a8
Patchwork-id: 56547
9ae3a8
O-Subject: [RHEL-7.0 qemu-kvm PATCH v2 11/14] qcow2: Add missing space in error message
9ae3a8
Bugzilla: 1033490
9ae3a8
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
9ae3a8
RH-Acked-by: Fam Zheng <famz@redhat.com>
9ae3a8
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
9ae3a8
9ae3a8
BZ: 1033490
9ae3a8
9ae3a8
The error message in qcow2_downgrade about an unsupported refcount
9ae3a8
order is missing a space. This patch adds it.
9ae3a8
9ae3a8
Signed-off-by: Max Reitz <mreitz@redhat.com>
9ae3a8
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
9ae3a8
(cherry picked from commit 9e3f08923a14ba0655c6797edd9ffef44bb8cbf2)
9ae3a8
9ae3a8
Signed-off-by: Max Reitz <mreitz@redhat.com>
9ae3a8
---
9ae3a8
 block/qcow2.c | 2 +-
9ae3a8
 1 file changed, 1 insertion(+), 1 deletion(-)
9ae3a8
9ae3a8
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
---
9ae3a8
 block/qcow2.c |    2 +-
9ae3a8
 1 files changed, 1 insertions(+), 1 deletions(-)
9ae3a8
9ae3a8
diff --git a/block/qcow2.c b/block/qcow2.c
9ae3a8
index 5b28259..3f7fd51 100644
9ae3a8
--- a/block/qcow2.c
9ae3a8
+++ b/block/qcow2.c
9ae3a8
@@ -2013,7 +2013,7 @@ static int qcow2_downgrade(BlockDriverState *bs, int target_version)
9ae3a8
          * support anything different than 4 anyway, there is no point in doing
9ae3a8
          * so right now; however, we should error out (if qemu supports this in
9ae3a8
          * the future and this code has not been adapted) */
9ae3a8
-        error_report("qcow2_downgrade: Image refcount orders other than 4 are"
9ae3a8
+        error_report("qcow2_downgrade: Image refcount orders other than 4 are "
9ae3a8
                      "currently not supported.");
9ae3a8
         return -ENOTSUP;
9ae3a8
     }
9ae3a8
-- 
9ae3a8
1.7.1
9ae3a8