From 0e69e059fe106d05ee4978a8ee3a6142ce103676 Mon Sep 17 00:00:00 2001 From: sowle Date: Sat, 29 Jun 2024 13:59:01 +0200 Subject: [PATCH] fixed incorrect end-of-object indentation in dump_as_json() and similar functions --- contrib/epee/include/storages/portable_storage_to_json.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/epee/include/storages/portable_storage_to_json.h b/contrib/epee/include/storages/portable_storage_to_json.h index 3292c952..7230a14b 100644 --- a/contrib/epee/include/storages/portable_storage_to_json.h +++ b/contrib/epee/include/storages/portable_storage_to_json.h @@ -116,7 +116,7 @@ namespace epee template static void handle_obj_end(t_stream& strm, size_t indent) { - strm << "}"; + strm << make_indent(indent) << "}"; } template