Skip to content

Commit

Permalink
Fix a bogus compiler warning about using possibly uninitialized varia…
Browse files Browse the repository at this point in the history
…ble.
  • Loading branch information
mity committed Dec 29, 2023
1 parent 5ec4780 commit 09b667d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/acutest.h
Original file line number Diff line number Diff line change
Expand Up @@ -1807,7 +1807,7 @@ int
main(int argc, char** argv)
{
int i, index;
int exit_code;
int exit_code = 1;

acutest_argv0_ = argv[0];

Expand Down

0 comments on commit 09b667d

Please sign in to comment.