libyang FORMAT uncrustify format of all sources
diff --git a/src/printer_json.c b/src/printer_json.c
index c0ea3c5..ad9fc3a 100644
--- a/src/printer_json.c
+++ b/src/printer_json.c
@@ -598,7 +598,7 @@
if (!node->schema || node->schema->nodetype != LYS_LIST) {
ly_print_(ctx->out, "%s{%s", (is_open_array(ctx, node) && ctx->level_printed >= ctx->level) ? "," : "",
- (DO_FORMAT && has_content) ? "\n" : "");
+ (DO_FORMAT && has_content) ? "\n" : "");
} else {
ly_print_(ctx->out, "%s%*s{%s", (is_open_array(ctx, node) && ctx->level_printed >= ctx->level) ? "," : "",
INDENT, (DO_FORMAT && has_content) ? "\n" : "");
@@ -617,7 +617,6 @@
json_print_anydata(ctx, (struct lyd_node_any *)node);
}
-
LEVEL_DEC;
if (DO_FORMAT && has_content) {
ly_print_(ctx->out, "\n%*s}", INDENT);