From a460fa1a5eefb8ff7e6c1d8641d43a91728931b9 Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Tue, 20 Mar 2018 12:33:30 +0100 Subject: [PATCH] readini.c: remove extraneous parentheses to silence a warning --- src/readini.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/readini.c b/src/readini.c index 4a9be95f..e9c1258f 100644 --- a/src/readini.c +++ b/src/readini.c @@ -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++;