diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-22 15:40:15 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-22 15:40:15 +0200 |
commit | 199d1342d76b5cae6503fa0a97322d2658d43b5f (patch) | |
tree | b88b49f7c16d305b76736e34e795e781dac28417 /src/ast.c | |
parent | d922c61db5a4eacf9c4c0a6ec5ed7647d000171a (diff) | |
download | fwd-199d1342d76b5cae6503fa0a97322d2658d43b5f.tar.gz fwd-199d1342d76b5cae6503fa0a97322d2658d43b5f.zip |
improve printing
Diffstat (limited to 'src/ast.c')
-rw-r--r-- | src/ast.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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); |