gdiplus/tests: make sure return value is used (LLVM/Clang)

EG Galano eg.galano at gmail.com
Sat Feb 5 02:21:00 CST 2011


-------------- next part --------------
diff --git a/dlls/gdiplus/tests/pathiterator.c b/dlls/gdiplus/tests/pathiterator.c
index 3e1c287..17cd463 100644
--- a/dlls/gdiplus/tests/pathiterator.c
+++ b/dlls/gdiplus/tests/pathiterator.c
@@ -124,6 +124,7 @@ static void test_nextmarker(void)
     expect(4, result);
     start = end = result = (INT)0xdeadbeef;
     stat = GdipPathIterNextMarker(iter, &result, &start, &end);
+    expect(Ok, stat);
     /* start/end remain unchanged */
     expect((INT)0xdeadbeef, start);
     expect((INT)0xdeadbeef, end);


More information about the wine-patches mailing list