reformatting: cJSONUtils_SortObject

This commit is contained in:
Max Bruckner 2016-10-28 23:37:21 +07:00
parent 8964287ec4
commit c65514fcb4
1 changed files with 4 additions and 2 deletions

View File

@ -718,8 +718,10 @@ static cJSON *cJSONUtils_SortList(cJSON *list)
return list;
}
void cJSONUtils_SortObject(cJSON *object) {object->child=cJSONUtils_SortList(object->child);}
void cJSONUtils_SortObject(cJSON *object)
{
object->child = cJSONUtils_SortList(object->child);
}
cJSON* cJSONUtils_MergePatch(cJSON *target, cJSON *patch)
{