From 35e4e865b5246c0dd9c4828d2d6d8cc905165a2a Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Thu, 9 Oct 2008 12:21:41 +0000 Subject: - standardize fopen error message a bit --- extra/locale/gen_collate.c | 2 +- extra/locale/gen_ldc.c | 2 +- extra/locale/gen_locale.c | 2 +- extra/locale/gen_mmap.c | 2 +- extra/locale/gen_wc8bit.c | 4 ++-- extra/locale/gen_wctype.c | 2 +- extra/locale/lmmtolso.c | 6 +++--- 7 files changed, 10 insertions(+), 10 deletions(-) (limited to 'extra') diff --git a/extra/locale/gen_collate.c b/extra/locale/gen_collate.c index 77dc5ff9e..58464a2a8 100644 --- a/extra/locale/gen_collate.c +++ b/extra/locale/gen_collate.c @@ -1253,7 +1253,7 @@ static int old_main(int argc, char **argv) FILE *fp = fopen("locale_collate.h", "w"); if (!fp) { - error_msg("couldn't open output file!"); + error_msg("cannot open output file!"); } dump_collate(fp); if (ferror(fp) || fclose(fp)) { diff --git a/extra/locale/gen_ldc.c b/extra/locale/gen_ldc.c index 08cd855af..2cedbddaf 100644 --- a/extra/locale/gen_ldc.c +++ b/extra/locale/gen_ldc.c @@ -162,7 +162,7 @@ int main(int argc, char **argv) if (argc == 2) output_file = argv[1]; if (!(lso = fopen(output_file, "w"))) { - printf("can't open output file '%s'!\n", output_file); + printf("cannot open output file '%s'!\n", output_file); return EXIT_FAILURE; } 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; } diff --git a/extra/locale/gen_mmap.c b/extra/locale/gen_mmap.c index f9bce022c..1cf0bb9e6 100644 --- a/extra/locale/gen_mmap.c +++ b/extra/locale/gen_mmap.c @@ -127,7 +127,7 @@ int main(void) unsigned char *p; if (!(fp = fopen("locale.mmap", "w"))) { - printf("error - can't open locale.mmap for writing!"); + printf("cannot open locale.mmap for writing!"); return EXIT_FAILURE; } diff --git a/extra/locale/gen_wc8bit.c b/extra/locale/gen_wc8bit.c index c6db41231..20f8f648b 100644 --- a/extra/locale/gen_wc8bit.c +++ b/extra/locale/gen_wc8bit.c @@ -103,7 +103,7 @@ int main(int argc, char **argv) } if (!(out = fopen("c8tables.h","w"))) { - printf("error: couldn't open file \"c8tables.h\"\n"); + printf("cannot open output file 'c8tables.h'!\n"); return EXIT_FAILURE; } @@ -173,7 +173,7 @@ int main(int argc, char **argv) codeset_index[0] = 0; while (--argc) { if (!(fp = fopen(*++argv,"r"))) { - printf("error: couldn't open file \"%s\"\n", *argv); + printf("cannot open file \"%s\"\n", *argv); return EXIT_FAILURE; } printf("processing %s... ", *argv); diff --git a/extra/locale/gen_wctype.c b/extra/locale/gen_wctype.c index 68fb26eec..6bfc40ba4 100644 --- a/extra/locale/gen_wctype.c +++ b/extra/locale/gen_wctype.c @@ -740,7 +740,7 @@ int main(int argc, char **argv) FILE *fp; if (!(fp = fopen("wctables.h", "w"))) { - printf("couldn't open wctables.h!\n"); + printf("cannot open output file 'wctables.h'!\n"); return EXIT_FAILURE; } diff --git a/extra/locale/lmmtolso.c b/extra/locale/lmmtolso.c index a1876a7dc..2437a8f69 100644 --- a/extra/locale/lmmtolso.c +++ b/extra/locale/lmmtolso.c @@ -14,18 +14,18 @@ int main(void) size_t i; if (!(lmm = fopen("locale.mmap", "r"))) { - printf("can't open locale.mmap!\n"); + printf("cannot open locale.mmap!\n"); return EXIT_FAILURE; } if (fstat(fileno(lmm), &fd_stat)) { - printf("can't stat locale.mmap!\n"); + printf("cannot stat locale.mmap!\n"); fclose(lmm); return EXIT_FAILURE; } if (!(lso = fopen("locale_data.c", "w"))) { - printf("can't open locale_data.c!\n"); + printf("cannot open locale_data.c!\n"); fclose(lmm); return EXIT_FAILURE; } -- cgit v1.2.3