diff options
author | Peter Lieven <pl@kamp.de> | 2013-11-27 11:07:09 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2013-12-06 16:53:50 +0100 |
commit | 405889820bcd5c2abf4eb70598e96f525f862c0f (patch) | |
tree | 8e9687c9e9e64e916ccdad56ccdd783ab949aba8 /qemu-img.c | |
parent | 24f833cd43dbfb5f8ae99e8a6d3691671622d3ea (diff) | |
download | qemu-405889820bcd5c2abf4eb70598e96f525f862c0f.zip qemu-405889820bcd5c2abf4eb70598e96f525f862c0f.tar.gz qemu-405889820bcd5c2abf4eb70598e96f525f862c0f.tar.bz2 |
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 <pl@kamp.de>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'qemu-img.c')
-rw-r--r-- | qemu-img.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |