Commit e9c36154 authored by Ken Thomases's avatar Ken Thomases Committed by Alexandre Julliard

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

The situation is commonplace on Macs and benign.
parent 32f177ae
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment