From d2cf2f88c5080cac2d3258b6cb3dc316a96bee19 Mon Sep 17 00:00:00 2001 From: Claudio Matsuoka Date: Fri, 8 Jun 2012 17:13:32 -0300 Subject: [PATCH] [xmp] Adjust verbosity levels Display instrument and sample info also if -vv is specified in the command line. Signed-off-by: Claudio Matsuoka --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index f80f201..7a84114 100644 --- a/src/main.c +++ b/src/main.c @@ -295,7 +295,7 @@ int main(int argc, char **argv) if (options.verbose > 0) { info_mod(&mi); } - if (options.verbose == 2) { + if (options.verbose > 1) { info_instruments(&mi); }