Commit bc26cb06 authored by Phil Blundell's avatar Phil Blundell

Fix filename in error message.

Patch from Meelis Roos <mroos@tartu.cyber.ee>
parent 1edf5aaa
...@@ -206,7 +206,7 @@ static void setfilename(char *name, int what) ...@@ -206,7 +206,7 @@ static void setfilename(char *name, int what)
(void) fclose(fd); (void) fclose(fd);
} else { } else {
fprintf(stderr, _("%s: can't open `%s'\n"), fprintf(stderr, _("%s: can't open `%s'\n"),
program_name, optarg); program_name, name);
exit(1); exit(1);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment