From 199d1342d76b5cae6503fa0a97322d2658d43b5f Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 22 Mar 2025 15:40:15 +0200 Subject: improve printing --- src/ast.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/ast.c') diff --git a/src/ast.c b/src/ast.c index 7c0225d..c236445 100644 --- a/src/ast.c +++ b/src/ast.c @@ -188,8 +188,9 @@ static void dump(int depth, const char *fmt, ...) va_list args; va_start(args, fmt); printf("//"); - for (int i = 0; i < depth; ++i) - printf(" "); + /* indent */ + if (depth != 0) + printf("%*c", 2 * depth, ' '); vprintf(fmt, args); -- cgit v1.2.3