[xmp] Enable option for quiet output

Signed-off-by: Claudio Matsuoka <cmatsuoka@gmail.com>
master
Claudio Matsuoka 14 years ago
parent dfa44865b0
commit 36799b94e9
  1. 2
      src/main.c
  2. 2
      src/options.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;
}

@ -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;

Loading…
Cancel
Save