From 081bdb70628163768a7361be10772c11980b5536 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Sat, 16 Dec 2023 20:09:24 -0500 Subject: snbt --- src/json/print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/json/print.c') 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"); -- cgit v1.2.3-freya