diff --git a/src/main.c b/src/main.c index 3f993d5..49cca8c 100644 --- a/src/main.c +++ b/src/main.c @@ -284,7 +284,7 @@ int main(int argc, char **argv) if (!control.loop && old_loop != mi.loop_count) break; - if (!background) { + if (!background && options.verbose > 0) { info_frame(&mi, &control, refresh_status); refresh_status = 0; } diff --git a/src/options.c b/src/options.c index 563a4a8..00eb1ae 100644 --- a/src/options.c +++ b/src/options.c @@ -206,7 +206,7 @@ void get_options(int argc, char **argv, struct options *options) options->probeonly = 1; break; case 'q': - //options->verbosity = 0; + options->verbose = 0; break; case 'R': options->random = 1;