Commit 40588982 authored by Peter Lieven's avatar Peter Lieven Committed by Stefan Hajnoczi
Browse files

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: default avatarPeter Lieven <pl@kamp.de>
Signed-off-by: default avatarStefan Hajnoczi <stefanha@redhat.com>
parent 24f833cd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);