From 7f645de32233d1391e12516d16bff5e631ec88b7 Mon Sep 17 00:00:00 2001 From: Max Bruckner Date: Sun, 30 Apr 2017 14:34:14 +0200 Subject: [PATCH] cJSONUtils_InplaceDecodePointerString -> decode_pointer_inplace --- cJSON_Utils.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cJSON_Utils.c b/cJSON_Utils.c index 1278264..12f30c5 100644 --- a/cJSON_Utils.c +++ b/cJSON_Utils.c @@ -290,7 +290,7 @@ CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointer(cJSON * const object, const char *po } /* JSON Patch implementation. */ -static void cJSONUtils_InplaceDecodePointerString(unsigned char *string) +static void decode_pointer_inplace(unsigned char *string) { unsigned char *decoded_string = string; @@ -379,7 +379,7 @@ static cJSON *cJSONUtils_PatchDetach(cJSON *object, const unsigned char *path) child_pointer++; parent = cJSONUtils_GetPointer(object, (char*)parent_pointer); - cJSONUtils_InplaceDecodePointerString(child_pointer); + decode_pointer_inplace(child_pointer); if (cJSON_IsArray(parent)) { @@ -765,7 +765,7 @@ static int cJSONUtils_ApplyPatch(cJSON *object, const cJSON *patch) child_pointer++; } parent = cJSONUtils_GetPointer(object, (char*)parent_pointer); - cJSONUtils_InplaceDecodePointerString(child_pointer); + decode_pointer_inplace(child_pointer); /* add, remove, replace, move, copy, test. */ if ((parent == NULL) || (child_pointer == NULL))