aboutsummaryrefslogtreecommitdiff
path: root/qemu-img.c
diff options
context:
space:
mode:
authorStefan Hajnoczi <stefanha@redhat.com>2013-02-07 17:15:03 +0100
committerKevin Wolf <kwolf@redhat.com>2013-02-22 21:21:09 +0100
commitc9fc50839863f05545caca92bb9fbead8b1c91bd (patch)
tree7315e2e71ed6d7474fe5114da9fa1d9c15c40d0a /qemu-img.c
parentfba31bae2d776fb4134186a830a252523df7933f (diff)
qemu-img: fix missing space in qemu-img check output
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 <stefanha@redhat.com>
Diffstat (limited to 'qemu-img.c')
-rw-r--r--qemu-img.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/qemu-img.c b/qemu-img.c
index 34249fee12..0e34bf0c90 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) {