From patchwork Thu Feb 7 16:15:03 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [v3,3/5] qemu-img: fix missing space in qemu-img check output Date: Thu, 07 Feb 2013 06:15:03 -0000 From: Stefan Hajnoczi X-Patchwork-Id: 218951 Message-Id: <1360253705-10400-4-git-send-email-stefanha@redhat.com> To: Cc: Kevin Wolf , fsimonce@redhat.com, Stefan Hajnoczi , crobinso@redhat.com The qemu-img check fragmentation printf() is missing a space before the '=' sign. The human output is not guaranteed to be stable and we are not aware of screen scrapers, so add the missing space. Also fix the missing indentation of the printf() arguments. Signed-off-by: Stefan Hajnoczi --- qemu-img.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/qemu-img.c b/qemu-img.c index 34249fe..0e34bf0 100644 --- a/qemu-img.c +++ b/qemu-img.c @@ -427,10 +427,11 @@ static void dump_human_image_check(ImageCheck *check) } if (check->total_clusters != 0 && check->allocated_clusters != 0) { - printf("%" PRId64 "/%" PRId64 "= %0.2f%% allocated, %0.2f%% fragmented\n", - check->allocated_clusters, check->total_clusters, - check->allocated_clusters * 100.0 / check->total_clusters, - check->fragmented_clusters * 100.0 / check->allocated_clusters); + printf("%" PRId64 "/%" PRId64 " = %0.2f%% allocated, " + "%0.2f%% fragmented\n", + check->allocated_clusters, check->total_clusters, + check->allocated_clusters * 100.0 / check->total_clusters, + check->fragmented_clusters * 100.0 / check->allocated_clusters); } if (check->image_end_offset) {