From aea40f3877e36e95f2a70e3eeb0569fd156e3841 Mon Sep 17 00:00:00 2001 From: Nakidai Date: Fri, 5 Jul 2024 07:16:05 +0300 Subject: Add almost all Only continue operation and "blocks" of code are left. Now I'm gonna sleep And yes, I understand that code need to be refactored, and if I will not get bored with writing this thing I will rewrite it in a better way, cuz now code is awful --- src/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/utils.c') diff --git a/src/utils.c b/src/utils.c index ee37110..978396c 100644 --- a/src/utils.c +++ b/src/utils.c @@ -14,10 +14,10 @@ noreturn void die(i32 code, s8 *fmt, ...) va_list args; fprintf(stderr, "%s: ", program_name); - va_start(args, fmt); vfprintf(stderr, fmt, args); va_end(args); + putc('\n', stderr); exit(code); } -- cgit 1.4.1