Remove obsolete 'enabled' variable from progress state
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
a55c73ba3f
commit
df6e008a88
@ -29,7 +29,6 @@
|
|||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
|
|
||||||
struct progress_state {
|
struct progress_state {
|
||||||
int enabled;
|
|
||||||
float current;
|
float current;
|
||||||
float last_print;
|
float last_print;
|
||||||
float min_skip;
|
float min_skip;
|
||||||
@ -46,10 +45,8 @@ static struct progress_state state;
|
|||||||
*/
|
*/
|
||||||
static void progress_simple_print(void)
|
static void progress_simple_print(void)
|
||||||
{
|
{
|
||||||
if (state.enabled) {
|
|
||||||
printf(" (%3.2f/100%%)\r", state.current);
|
printf(" (%3.2f/100%%)\r", state.current);
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void progress_simple_end(void)
|
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)
|
void qemu_progress_init(int enabled, float min_skip)
|
||||||
{
|
{
|
||||||
state.enabled = enabled;
|
|
||||||
state.min_skip = min_skip;
|
state.min_skip = min_skip;
|
||||||
if (enabled) {
|
if (enabled) {
|
||||||
progress_simple_init();
|
progress_simple_init();
|
||||||
|
Loading…
Reference in New Issue
Block a user