From c65514fcb430f2c5380d9264807c137d7c86b8d8 Mon Sep 17 00:00:00 2001 From: Max Bruckner Date: Fri, 28 Oct 2016 23:37:21 +0700 Subject: [PATCH] reformatting: cJSONUtils_SortObject --- cJSON_Utils.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cJSON_Utils.c b/cJSON_Utils.c index b59510f..903e2da 100644 --- a/cJSON_Utils.c +++ b/cJSON_Utils.c @@ -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) {