Fix warning on x86_64.

SVN revision: 38758
This commit is contained in:
Kim Woelders 2009-01-24 13:24:27 +00:00
parent f3a0732940
commit 5574f03e1e
1 changed files with 1 additions and 1 deletions

View File

@ -389,7 +389,7 @@ LangInit(void)
{
Eprintf("Locale: %s\n", setlocale(LC_ALL, NULL));
Eprintf("Character encoding: locale=%s internal=%s MB_CUR_MAX=%d\n",
enc_loc, enc_int, MB_CUR_MAX);
enc_loc, enc_int, (int)MB_CUR_MAX);
}
if (!Estrcasecmp(enc_loc, "utf8") || !Estrcasecmp(enc_loc, "utf-8"))