gdi32/tests: Make sure to use return value (LLVM/Clang).

This commit is contained in:
Austin English 2011-02-04 16:42:30 -08:00 committed by Alexandre Julliard
parent 3391c28d41
commit 0a649054ae
1 changed files with 1 additions and 0 deletions

View File

@ -1136,6 +1136,7 @@ static void test_GetGlyphIndices(void)
lf.lfCharSet = ANSI_CHARSET;
hfont = CreateFontIndirectA(&lf);
ok(hfont != 0, "CreateFontIndirectEx failed\n");
ok(GetTextMetrics(hdc, &textm), "GetTextMetric failed\n");
if (textm.tmCharSet == ANSI_CHARSET)
{