diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-06-26 20:22:09 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-06-26 20:22:09 +0000 |
commit | cadddb83ff025f5de85c170e062f91010b99a46a (patch) | |
tree | 39a78d71caeb340ec2e45ee6a716dfe8dc62c11c /extra/locale | |
parent | 6550b9fbe810a91765a40d8a684ebf20c183c628 (diff) |
if we cannot generate a locale, be a bit more specific in telling the user we are skipping it
Diffstat (limited to 'extra/locale')
-rw-r--r-- | extra/locale/gen_wctype.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/locale/gen_wctype.c b/extra/locale/gen_wctype.c index 6db285e3a..06cf7b8a9 100644 --- a/extra/locale/gen_wctype.c +++ b/extra/locale/gen_wctype.c @@ -279,7 +279,7 @@ int main(int argc, char **argv) while (--argc) { if (!setlocale(LC_CTYPE, *++argv)) { - printf("setlocale(LC_CTYPE,%s) failed!\n", *argv); + printf("setlocale(LC_CTYPE,%s) failed! Skipping this locale...\n", *argv); continue; } |