diff options
-rw-r--r-- | Build/source/texk/upmendex/fwrite.c | 4 | ||||
-rw-r--r-- | Build/source/texk/upmendex/sort.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Build/source/texk/upmendex/fwrite.c b/Build/source/texk/upmendex/fwrite.c index 911bbef4add..ff29536df7b 100644 --- a/Build/source/texk/upmendex/fwrite.c +++ b/Build/source/texk/upmendex/fwrite.c @@ -93,7 +93,7 @@ static void fprint_uchar(FILE *fp, const UChar *a, const int mode, const int len } else olen=wclen; if (olen>INITIALLENGTH) { - warn_printf(efp, "\nWarning, Too long (%d) header.\n", olen); + warn_printf(efp, "\nWarning: Too long (%d) header.\n", olen); wclen=INITIALLENGTH; } else wclen=olen; @@ -1042,7 +1042,7 @@ static int init_hanzi_header(void) len=u_strlen(pch0); } if (len>=INITIALLENGTH) { - warn_printf(efp, "\nWarning, Too long (%d) hanzi header.\n", len); + warn_printf(efp, "\nWarning: Too long (%d) hanzi header.\n", len); len=INITIALLENGTH-1; } u_strncpy(hz_index[k].idx,pch0,len); diff --git a/Build/source/texk/upmendex/sort.c b/Build/source/texk/upmendex/sort.c index 7d4590886a2..a3aedebae7f 100644 --- a/Build/source/texk/upmendex/sort.c +++ b/Build/source/texk/upmendex/sort.c @@ -128,11 +128,11 @@ BREAK: exit(254); } if (status == U_USING_DEFAULT_WARNING) { - warn_printf(efp, "\nWarning, [ICU] U_USING_DEFAULT_WARNING for locale %s\n", + warn_printf(efp, "\nWarning: [ICU] U_USING_DEFAULT_WARNING for locale %s\n", icu_locale); } if (status == U_USING_FALLBACK_WARNING) { - warn_printf(efp, "\nWarning, [ICU] U_USING_FALLBACK_WARNING for locale %s\n", + warn_printf(efp, "\nWarning: [ICU] U_USING_FALLBACK_WARNING for locale %s\n", icu_locale); } for (i=0;i<UCOL_ATTRIBUTE_COUNT;i++) { @@ -141,7 +141,7 @@ BREAK: ucol_setAttribute(icu_collator, i, icu_attributes[i], &status); } if (U_FAILURE(status)) { - warn_printf(efp, "\nWarning, [ICU] Failed to set attribute (%d): %s\n", + warn_printf(efp, "\nWarning: [ICU] Failed to set attribute (%d): %s\n", i, u_errorName(status)); } } |