reformatting: cJSONUtils_GeneratePatches

This commit is contained in:
Max Bruckner
2016-10-29 22:44:44 +07:00
parent 8879ed5dbc
commit ec9d1cfedb
+1 -1
View File
@@ -607,10 +607,10 @@ cJSON* cJSONUtils_GeneratePatches(cJSON *from,cJSON *to)
{ {
cJSON *patches = cJSON_CreateArray(); cJSON *patches = cJSON_CreateArray();
cJSONUtils_CompareToPatch(patches, "", from, to); cJSONUtils_CompareToPatch(patches, "", from, to);
return patches; return patches;
} }
static cJSON *cJSONUtils_SortList(cJSON *list) static cJSON *cJSONUtils_SortList(cJSON *list)
{ {
cJSON *first=list,*second=list,*ptr=list; cJSON *first=list,*second=list,*ptr=list;