Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/jshn.c
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-11-23 22:21:14 +0300
committerFelix Fietkau <nbd@openwrt.org>2014-11-23 22:59:49 +0300
commit0bfb44f590402137bfcf8e65c54638908d5ed6d2 (patch)
treec31b67e9311e487dd79c3d6af6efa86d24fd8d59 /jshn.c
parentd59fa8d58844f3d6fad70a540a73ee6290613dd4 (diff)
jshn: shorten JSON_VAR to J_V
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'jshn.c')
-rw-r--r--jshn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/jshn.c b/jshn.c
index cd9d402..431e1b3 100644
--- a/jshn.c
+++ b/jshn.c
@@ -260,7 +260,7 @@ static int jshn_format(bool no_newline, bool indent)
const char *output;
obj = json_object_new_object();
- jshn_add_objects(obj, "JSON_VAR", false);
+ jshn_add_objects(obj, "J_V", false);
output = json_object_to_json_string(obj);
if (indent) {
blob_buf_init(&b, 0);