diff options
Diffstat (limited to 'src/alf.c')
| -rw-r--r-- | src/alf.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -343,7 +343,8 @@ int main(int argc, char **argv) { out_file = fopen(out_filename, opt_append ? "ab" : "wb"); if(!out_file) { - perror(*argv); + fprintf(stderr, "%s: fatal: ", self); + perror(out_filename); exit(1); } |
