readini.c: remove extraneous parentheses to silence a warning

This commit is contained in:
Thomas Bernard 2018-03-20 12:33:30 +01:00
parent 07bb8fe7a4
commit a460fa1a5e

View File

@ -51,7 +51,7 @@ void Load_INI_clear_string(char * str, byte keep_comments)
for (index=0;str[index]!='\0';) for (index=0;str[index]!='\0';)
{ {
if ((str[index]=='=')) if (str[index]=='=')
{ {
equal_found=1; equal_found=1;
index++; index++;