From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43035) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VUeIY-0007P9-W2 for qemu-devel@nongnu.org; Fri, 11 Oct 2013 11:06:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VUeIS-0005Ij-9X for qemu-devel@nongnu.org; Fri, 11 Oct 2013 11:06:38 -0400 Received: from mx1.redhat.com ([209.132.183.28]:44687) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VUeIS-0005IY-1M for qemu-devel@nongnu.org; Fri, 11 Oct 2013 11:06:32 -0400 From: Kevin Wolf Date: Fri, 11 Oct 2013 17:05:11 +0200 Message-Id: <1381503951-27985-22-git-send-email-kwolf@redhat.com> In-Reply-To: <1381503951-27985-1-git-send-email-kwolf@redhat.com> References: <1381503951-27985-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PULL 21/61] qcow2: Add missing space in error message List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: kwolf@redhat.com, qemu-devel@nongnu.org From: Max Reitz The error message in qcow2_downgrade about an unsupported refcount order is missing a space. This patch adds it. Signed-off-by: Max Reitz Signed-off-by: Kevin Wolf --- block/qcow2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block/qcow2.c b/block/qcow2.c index e8d2735..9095f7c 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; } -- 1.8.1.4