From 7a68d1106b37e16c24e58bc77ce49fc6beadce9c Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 1 May 2026 14:40:06 +0300 Subject: run formatter + Should really get this done automatically somehow --- src/compiler.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/compiler.c') diff --git a/src/compiler.c b/src/compiler.c index 5de992d..f367f9a 100644 --- a/src/compiler.c +++ b/src/compiler.c @@ -151,7 +151,8 @@ struct scope *compile_file(const char *file) if (*dir != 0 && chdir(dir)) { error("couldn't change to directory %s: %s", dir, - strerror(errno)); + strerror(errno) + ); goto out; } @@ -176,7 +177,8 @@ struct scope *compile_file(const char *file) if (chdir(cwd)) { error("couldn't change back to directory %s: %s", cwd, - strerror(errno)); + strerror(errno) + ); goto out; } -- cgit v1.2.3