diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2026-05-01 14:40:06 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2026-05-01 14:40:06 +0300 |
| commit | 7a68d1106b37e16c24e58bc77ce49fc6beadce9c (patch) | |
| tree | b0a3bb0b0124294b213cdfd3ae7b214bc32b19f5 /src/compiler.c | |
| parent | 48cd04e1a57f076287fb6ecdd0a4236e191ff7d3 (diff) | |
| download | fwd-7a68d1106b37e16c24e58bc77ce49fc6beadce9c.tar.gz fwd-7a68d1106b37e16c24e58bc77ce49fc6beadce9c.zip | |
run formatter
+ Should really get this done automatically somehow
Diffstat (limited to 'src/compiler.c')
| -rw-r--r-- | src/compiler.c | 6 |
1 files changed, 4 insertions, 2 deletions
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; } |
