소스 검색

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

Mike Frysinger 18 년 전
부모
커밋
cadddb83ff
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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;
 		}