aboutsummaryrefslogtreecommitdiff
path: root/src/unalf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unalf.c')
-rw-r--r--src/unalf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/unalf.c b/src/unalf.c
index ee235b1..9a43bb2 100644
--- a/src/unalf.c
+++ b/src/unalf.c
@@ -21,13 +21,13 @@ static void create_outdir(void) {
mkdir(opts.outdir, 0777);
#endif
if(r < 0 && errno != EEXIST) {
- fprintf(stderr, "%s: ", self);
+ fprintf(stderr, "%s: fatal: ", self);
perror(opts.outdir);
exit(1);
}
if(chdir(opts.outdir) < 0) {
- fprintf(stderr, "%s: ", self);
+ fprintf(stderr, "%s: fatal: ", self);
perror(opts.outdir);
exit(1);
}
@@ -61,7 +61,7 @@ int main(int argc, char **argv) {
parse_opts(argc, argv);
if(!(in_file = fopen(in_filename, "rb"))) {
- fprintf(stderr, "%s: ", self);
+ fprintf(stderr, "%s: fatal: ", self);
perror(in_filename);
exit(1);
}