Module: wine Branch: master Commit: 1091ceef7b440650e96452bb515b612cdca86257 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1091ceef7b440650e96452bb51...
Author: Austin English austinenglish@gmail.com Date: Thu Feb 10 13:27:29 2011 -0800
mshtml/tests: Make sure a return value is used (LLVM/Clang).
---
dlls/mshtml/tests/script.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/mshtml/tests/script.c b/dlls/mshtml/tests/script.c index f9aafbb..761d440 100644 --- a/dlls/mshtml/tests/script.c +++ b/dlls/mshtml/tests/script.c @@ -1832,6 +1832,7 @@ static void test_nextdispid(IDispatchEx *dispex)
V_VT(&var) = VT_EMPTY; hres = dispex_propput(dispex, dyn_id, 0, &var); + ok(hres == S_OK, "dispex_propput failed: %08x\n", hres);
while(last_id != dyn_id) { hres = IDispatchEx_GetNextDispID(dispex, fdexEnumAll, last_id, &id);