diff --git a/win32ss/gdi/ntgdi/freetype.c b/win32ss/gdi/ntgdi/freetype.c index 44252a2fec1..05a31fad323 100644 --- a/win32ss/gdi/ntgdi/freetype.c +++ b/win32ss/gdi/ntgdi/freetype.c @@ -7389,7 +7389,10 @@ IntExtTextOutW( /* Do chars > space & not DEL & not nbsp have a glyphSize.cx of zero? */ if (ch0 > L' ' && ch0 != del && ch0 != nbsp && glyphSize.cx == 0) - DPRINT1("WARNING: WChar 0x%04x has a glyphSize.cx of zero\n", ch0); + { + DPRINT1("WARNING: family_name '%s' WChar 0x%04x has a glyphSize.cx of zero\n", + face->family_name, ch0); + } /* Don't ignore spaces or non-breaking spaces when computing offset. * This completes the fix of CORE-11787. */