Module: wine Branch: master Commit: 0a649054aea6bbabb42aec502447463a9aed40e1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0a649054aea6bbabb42aec5024...
Author: Austin English austinenglish@gmail.com Date: Fri Feb 4 16:42:30 2011 -0800
gdi32/tests: Make sure to use return value (LLVM/Clang).
---
dlls/gdi32/tests/font.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/gdi32/tests/font.c b/dlls/gdi32/tests/font.c index 3ea883a..8bce92b 100644 --- a/dlls/gdi32/tests/font.c +++ b/dlls/gdi32/tests/font.c @@ -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) {