From 09b667d8b5281bff14517fac5835129c8e780557 Mon Sep 17 00:00:00 2001 From: Martin Mitas Date: Fri, 29 Dec 2023 09:05:53 +0100 Subject: [PATCH] Fix a bogus compiler warning about using possibly uninitialized variable. --- include/acutest.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/acutest.h b/include/acutest.h index fa620bd..6c225c9 100644 --- a/include/acutest.h +++ b/include/acutest.h @@ -1807,7 +1807,7 @@ int main(int argc, char** argv) { int i, index; - int exit_code; + int exit_code = 1; acutest_argv0_ = argv[0];