EG Galano : gdiplus/tests: Make sure return value is used (LLVM/Clang).
Module: wine Branch: master Commit: fbf9494b89d88ae50d215442b2de10fe206d3350 URL: http://source.winehq.org/git/wine.git/?a=commit;h=fbf9494b89d88ae50d215442b2... Author: EG Galano <eg.galano(a)gmail.com> Date: Sat Feb 5 00:21:00 2011 -0800 gdiplus/tests: Make sure return value is used (LLVM/Clang). --- dlls/gdiplus/tests/pathiterator.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) 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);
participants (1)
-
Alexandre Julliard