From 4c63e6673a30186bb9ded56076c711714cb9925f Mon Sep 17 00:00:00 2001 From: dschlaep Date: Tue, 5 Dec 2017 17:32:50 -0500 Subject: [PATCH] bugfix close #100 --- SW_Main_Function.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SW_Main_Function.c b/SW_Main_Function.c index 2cc600b85..5b7f0c7fe 100644 --- a/SW_Main_Function.c +++ b/SW_Main_Function.c @@ -150,7 +150,7 @@ void init_args(int argc, char **argv) { * -q=quiet, don't print "Check logfile" * at end of program. */ - char str[1024] + char str[1024]; const char *opts[] = { "-d", "-f", "-e", "-q" }; /* valid options */ int valopts[] = { 1, 1, 0, 0 }; /* indicates options with values */ /* 0=none, 1=required, -1=optional */