From 186cce3ece6ce6dfcb58ac8b2a63f7846c3493ad Mon Sep 17 00:00:00 2001 From: Max Bruckner Date: Wed, 10 May 2017 00:52:33 +0200 Subject: [PATCH] Fix -Wcomma --- cJSON.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/cJSON.c b/cJSON.c index cb3bf13..b9ae041 100644 --- a/cJSON.c +++ b/cJSON.c @@ -2560,16 +2560,18 @@ CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * cons case cJSON_Array: { - cJSON *a_element = NULL; - cJSON *b_element = NULL; - for (a_element = a->child, b_element = b->child; - (a_element != NULL) && (b_element != NULL); - a_element = a_element->next, b_element = b_element->next) + cJSON *a_element = a->child; + cJSON *b_element = b->child; + + for (; (a_element != NULL) && (b_element != NULL);) { if (!cJSON_Compare(a_element, b_element, case_sensitive)) { return false; } + + a_element = a_element->next; + b_element = b_element->next; } return true;