Index: rostests/winetests/gdi32/font.c =================================================================== --- rostests/winetests/gdi32/font.c (revision 75326) +++ rostests/winetests/gdi32/font.c (working copy) @@ -3837,8 +3837,8 @@ ascent = GET_BE_WORD(tt_os2.usWinAscent); descent = abs((SHORT)GET_BE_WORD(tt_os2.usWinDescent)); cell_height = ascent + descent; - ok(ntm->ntmCellHeight == cell_height, "%s: ntmCellHeight %u != %u, os2.usWinAscent/os2.usWinDescent %u/%u\n", - font_name, ntm->ntmCellHeight, cell_height, ascent, descent); + ok(ntm->ntmCellHeight == cell_height, "%s: ntmCellHeight %u != %u, os2.usWinAscent/os2.usWinDescent %u/%u for charset: %d & weight: %d & Italic: %d\n", + font_name, ntm->ntmCellHeight, cell_height, ascent, descent, lf->lfCharSet, lf->lfWeight, lf->lfItalic); version = GET_BE_WORD(tt_os2.version);