diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-04-26 16:39:38 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-04-26 16:39:38 +0300 |
commit | b3ff589dbd97f6057a03bedc7df8ccca7bd3662f (patch) | |
tree | d2c514b32cde508264519b88d54a90f1b7d27df8 /src/core.c | |
parent | da9fe1e040b04cbe816c67fab7cb45d7db75107c (diff) | |
download | posthaste-b3ff589dbd97f6057a03bedc7df8ccca7bd3662f.tar.gz posthaste-b3ff589dbd97f6057a03bedc7df8ccca7bd3662f.zip |
formatting
Diffstat (limited to 'src/core.c')
-rw-r--r-- | src/core.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -44,7 +44,8 @@ int run(const char *fname) FILE *f = fopen(fname, "rb"); if (!f) { - fprintf(stderr, "failed opening %s: %s\n", fname, strerror(errno)); + fprintf(stderr, "failed opening %s: %s\n", fname, + strerror(errno)); return -1; } |