reformatting: cJSONUtils_GeneratePatches

This commit is contained in:
Max Bruckner 2016-10-17 17:41:50 +07:00
parent 8879ed5dbc
commit ec9d1cfedb

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;