Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
makuke1234 committed May 16, 2022
1 parent aba7c85 commit 047fbb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -387,14 +387,14 @@ int main(int argc, char ** argv)
if (argc > 1)
{
fprintf(stderr, "Un-recognized command-line option '%s'\n", bufs[0]);
if (!*helpflag)
if (!helpflag)
{
return false;
}
}
else
{
*helpflag = true;
helpflag = true;
}
}
}
Expand Down

0 comments on commit 047fbb4

Please sign in to comment.