aboutsummaryrefslogtreecommitdiff
path: root/src/ast.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-03-22 15:40:15 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-03-22 15:40:15 +0200
commit199d1342d76b5cae6503fa0a97322d2658d43b5f (patch)
treeb88b49f7c16d305b76736e34e795e781dac28417 /src/ast.c
parentd922c61db5a4eacf9c4c0a6ec5ed7647d000171a (diff)
downloadfwd-199d1342d76b5cae6503fa0a97322d2658d43b5f.tar.gz
fwd-199d1342d76b5cae6503fa0a97322d2658d43b5f.zip
improve printing
Diffstat (limited to 'src/ast.c')
-rw-r--r--src/ast.c5
1 files changed, 3 insertions, 2 deletions
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);