From 69e65b9cf08f0f594f24810bf8f9ee6c79744743 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marcin=20=C5=9Alusarz?= Date: Wed, 9 Sep 2020 19:42:52 +0200 Subject: [PATCH] intel/tools: fix possible randomly increased verbosity of error2aub MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Found by Coverity. Signed-off-by: Marcin Ślusarz Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/tools/error2aub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/tools/error2aub.c b/src/intel/tools/error2aub.c index 48cd8a0..dda8e20 100644 --- a/src/intel/tools/error2aub.c +++ b/src/intel/tools/error2aub.c @@ -240,7 +240,7 @@ int main(int argc, char *argv[]) { int i, c; - bool help = false, verbose; + bool help = false, verbose = false; char *out_filename = NULL, *in_filename = NULL; const struct option aubinator_opts[] = { { "help", no_argument, NULL, 'h' }, -- 2.7.4