From: Paul Fertser Date: Fri, 20 Nov 2015 10:08:20 +0000 (+0300) Subject: svf: fix progress reporting switch behaviour X-Git-Tag: v0.10.0-rc1~358 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a652a4ea209d24d0f0ebcc73e5eaab14169f958d;p=openocd svf: fix progress reporting switch behaviour The svf_progress_enabled variable is global, hence its lifetime is not limited and it retains the value from the previous run. Fix this by explicit assignment. Change-Id: Id6f4fa88f39521606342a37f6876a0948ac5406e Signed-off-by: Paul Fertser Reviewed-on: http://openocd.zylin.com/3111 Tested-by: jenkins Reviewed-by: Freddie Chopin --- diff --git a/src/svf/svf.c b/src/svf/svf.c index 73c75eed..7b7b8d09 100644 --- a/src/svf/svf.c +++ b/src/svf/svf.c @@ -378,6 +378,7 @@ COMMAND_HANDLER(handle_svf_command) /* parse command line */ svf_quiet = 0; svf_nil = 0; + svf_progress_enabled = 0; svf_ignore_error = 0; for (unsigned int i = 0; i < CMD_ARGC; i++) { if (strcmp(CMD_ARGV[i], "-tap") == 0) {