riched20: Remove a redundant parameter from trace.

This commit is contained in:
Dmitry Timoshkov 2007-12-20 19:03:24 +08:00 committed by Alexandre Julliard
parent f4eea10bed
commit 5a6e0ea46f
1 changed files with 1 additions and 1 deletions

View File

@ -552,7 +552,7 @@ RTFCharSetToCodePage(RTF_Info *info, int charset)
/* FIXME: TranslateCharsetInfo does not work as good as it
* should, so let's use it only when all else fails */
if (!TranslateCharsetInfo(&n, &csi, TCI_SRCCHARSET))
ERR("%s: unknown charset %u\n", __FUNCTION__, charset);
ERR("unknown charset %d\n", charset);
else
return csi.ciACP;
}