diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-10-09 12:21:41 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-10-09 12:21:41 +0000 |
commit | 35e4e865b5246c0dd9c4828d2d6d8cc905165a2a (patch) | |
tree | 00ba2874bee2c9af4dd6069c067ef8ec81a6c2ea /extra/locale/gen_locale.c | |
parent | 4a9c34b27b90353d60b8f1fbe37a29442dc74056 (diff) |
- standardize fopen error message a bit
Diffstat (limited to 'extra/locale/gen_locale.c')
-rw-r--r-- | extra/locale/gen_locale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/locale/gen_locale.c b/extra/locale/gen_locale.c index 200e63095..936883e70 100644 --- a/extra/locale/gen_locale.c +++ b/extra/locale/gen_locale.c @@ -584,7 +584,7 @@ int main(int argc, char **argv) if (argc == 3) output_file = *++argv; if (output_file == NULL || !(ofp = fopen(output_file, "w"))) { - printf("error: can not open outputfile '%s' for writing!\n", + printf("cannot open output file '%s'!\n", output_file); return EXIT_FAILURE; } |