summaryrefslogtreecommitdiff
path: root/src/json/print.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/json/print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/json/print.c b/src/json/print.c
index 9f2931f..ab154b9 100644
--- a/src/json/print.c
+++ b/src/json/print.c
@@ -160,7 +160,7 @@ static bool json_print_data(const tag_t *tag, const stream_t *stream, int depth)
static bool json_print_impl(const tag_t *tag, const stream_t *stream, int depth) {
if (tag->name_len > 0) {
- printi(stream, depth, "\"%.*s\":\t", tag->name_len, tag->name);
+ printi(stream, depth, "\"%.*s\": ", tag->name_len, tag->name);
} else {
for (int i = 0; i < depth; i++)
printi(stream, 0, "\t");