Adding back "const".

This commit is contained in:
Pawel Winogrodzki
2017-04-08 17:56:29 +02:00
committed by Max Bruckner
parent 238ceec175
commit c786cd9714
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1695,7 +1695,7 @@ CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON *object, const char *strin
return c;
}
CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * object, const char * string)
CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string)
{
cJSON *current_element = NULL;