From 52e53acfc38796c3046f7fed46995c451537d957 Mon Sep 17 00:00:00 2001 From: Max Bruckner Date: Mon, 17 Oct 2016 17:01:52 +0700 Subject: [PATCH] reformatting: cJSON_AddPatchToArray --- cJSON_Utils.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cJSON_Utils.c b/cJSON_Utils.c index 6f40c0d..9b7e85a 100644 --- a/cJSON_Utils.c +++ b/cJSON_Utils.c @@ -504,7 +504,10 @@ static void cJSONUtils_GeneratePatch(cJSON *patches, const char *op, const char cJSON_AddItemToArray(patches, patch); } -void cJSONUtils_AddPatchToArray(cJSON *array,const char *op,const char *path,cJSON *val) {cJSONUtils_GeneratePatch(array,op,path,0,val);} +void cJSONUtils_AddPatchToArray(cJSON *array, const char *op, const char *path, cJSON *val) +{ + cJSONUtils_GeneratePatch(array, op, path, 0, val); +} static void cJSONUtils_CompareToPatch(cJSON *patches,const char *path,cJSON *from,cJSON *to) {