From: Peter Lieven Date: Wed, 27 Nov 2013 10:07:09 +0000 (+0100) Subject: qemu-img: decrease progress update interval on convert X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=405889820bcd5c2abf4eb70598e96f525f862c0f;p=qmiga%2Fqemu.git qemu-img: decrease progress update interval on convert when doing very large jobs updating the progress only every 2% is too rare. Signed-off-by: Peter Lieven Signed-off-by: Stefan Hajnoczi --- diff --git a/qemu-img.c b/qemu-img.c index 76f05f2e94..7dfe982b0c 100644 --- a/qemu-img.c +++ b/qemu-img.c @@ -1245,7 +1245,7 @@ static int img_convert(int argc, char **argv) out_filename = argv[argc - 1]; /* Initialize before goto out */ - qemu_progress_init(progress, 2.0); + qemu_progress_init(progress, 1.0); if (options && is_help_option(options)) { ret = print_block_option_help(out_filename, out_fmt);