gdi32: Change an ERR to a WARN for fonts with too-long names.

The situation is commonplace on Macs and benign.
This commit is contained in:
Ken Thomases 2015-02-14 07:29:14 -06:00 committed by Alexandre Julliard
parent 32f177ae30
commit e9c36154e3
1 changed files with 1 additions and 1 deletions

View File

@ -2026,7 +2026,7 @@ static void AddFaceToList(FT_Face ft_face, const char *file, void *font_data_ptr
family = get_family( ft_face, flags & ADDFONT_VERTICAL_FONT );
if (strlenW(family->FamilyName) >= LF_FACESIZE)
{
ERR("Ignoring %s because name is too long\n", debugstr_w(family->FamilyName));
WARN("Ignoring %s because name is too long\n", debugstr_w(family->FamilyName));
release_face( face );
release_family( family );
return;