Browse Source

if we cannot generate a locale, be a bit more specific in telling the user we are skipping it

Mike Frysinger 18 years ago
parent
commit
cadddb83ff
1 changed files with 1 additions and 1 deletions
  1. 1 1
      extra/locale/gen_wctype.c

+ 1 - 1
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;
 		}