Skip to content

Commit

Permalink
readini.c: remove extraneous parentheses to silence a warning
Browse files Browse the repository at this point in the history
  • Loading branch information
miniupnp committed Mar 20, 2018
1 parent 07bb8fe commit a460fa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/readini.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void Load_INI_clear_string(char * str, byte keep_comments)

for (index=0;str[index]!='\0';)
{
if ((str[index]=='='))
if (str[index]=='=')
{
equal_found=1;
index++;
Expand Down

0 comments on commit a460fa1

Please sign in to comment.