summaryrefslogtreecommitdiff
path: root/block.c
diff options
context:
space:
mode:
authorFam Zheng <famz@redhat.com>2014-12-09 15:38:04 +0800
committerStefan Hajnoczi <stefanha@redhat.com>2014-12-12 16:52:33 +0000
commit43c5d8f8001eb467abf091c3e2a8aca3d1e5b522 (patch)
tree716d648a0211c7bbb22c9ae12b956a75dc10eb01 /block.c
parent7486458c33cd3e5714368f181a5fea39c54444ca (diff)
downloadqemu-43c5d8f8001eb467abf091c3e2a8aca3d1e5b522.tar.gz
block: Don't add trailing space in "Formating..." message
Change the message printing code to output a separator for each option string before it instead of after, then we don't one more extra ' ' in the end. To update qemu-iotests output files, most of the times one would just copy the *.out.bad to *.out. With this change we will not have the space disliked by checkpatch.pl. Signed-off-by: Fam Zheng <famz@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Message-id: 1418110684-19528-3-git-send-email-famz@redhat.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'block.c')
-rw-r--r--block.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/block.c b/block.c
index a75a99228c..4165d4265c 100644
--- a/block.c
+++ b/block.c
@@ -5668,8 +5668,8 @@ void bdrv_img_create(const char *filename, const char *fmt,
}
if (!quiet) {
- printf("Formatting '%s', fmt=%s ", filename, fmt);
- qemu_opts_print(opts);
+ printf("Formatting '%s', fmt=%s", filename, fmt);
+ qemu_opts_print(opts, " ");
puts("");
}