From df6e008a8814af9db872f1319b58784d87987c93 Mon Sep 17 00:00:00 2001 From: Jes Sorensen Date: Wed, 27 Apr 2011 14:31:51 +0200 Subject: [PATCH] Remove obsolete 'enabled' variable from progress state Signed-off-by: Jes Sorensen Signed-off-by: Kevin Wolf --- qemu-progress.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/qemu-progress.c b/qemu-progress.c index b4b751c9ec..e1feb89614 100644 --- a/qemu-progress.c +++ b/qemu-progress.c @@ -29,7 +29,6 @@ #include struct progress_state { - int enabled; float current; float last_print; float min_skip; @@ -46,10 +45,8 @@ static struct progress_state state; */ static void progress_simple_print(void) { - if (state.enabled) { - printf(" (%3.2f/100%%)\r", state.current); - fflush(stdout); - } + printf(" (%3.2f/100%%)\r", state.current); + fflush(stdout); } static void progress_simple_end(void) @@ -96,7 +93,6 @@ static void progress_dummy_init(void) void qemu_progress_init(int enabled, float min_skip) { - state.enabled = enabled; state.min_skip = min_skip; if (enabled) { progress_simple_init();