From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57758) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VTt4U-0006lf-Us for qemu-devel@nongnu.org; Wed, 09 Oct 2013 08:41:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VTt4O-0007ln-V3 for qemu-devel@nongnu.org; Wed, 09 Oct 2013 08:40:58 -0400 Received: from mx1.redhat.com ([209.132.183.28]:7693) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VTt4O-0007ld-N3 for qemu-devel@nongnu.org; Wed, 09 Oct 2013 08:40:52 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r99CepNF002925 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 9 Oct 2013 08:40:51 -0400 From: Max Reitz Date: Wed, 9 Oct 2013 14:40:48 +0200 Message-Id: <1381322448-18447-1-git-send-email-mreitz@redhat.com> Subject: [Qemu-devel] [PATCH] qcow2: Add missing space in error message List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Kevin Wolf , Stefan Hajnoczi , 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 --- block/qcow2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block/qcow2.c b/block/qcow2.c index d59ecbd..1385f92 100644 --- a/block/qcow2.c +++ b/block/qcow2.c @@ -1913,7 +1913,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.3.1