Austin English : msi/tests: Make sure to use a return value (LLVM/Clang).

Alexandre Julliard julliard at winehq.org
Fri Feb 11 11:16:34 CST 2011


Module: wine
Branch: master
Commit: 27dd864f6326e642ae36c266e3b093eb2d68c9d0
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=27dd864f6326e642ae36c266e3b093eb2d68c9d0

Author: Austin English <austinenglish at gmail.com>
Date:   Thu Feb 10 13:27:44 2011 -0800

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

---

 dlls/msi/tests/db.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/dlls/msi/tests/db.c b/dlls/msi/tests/db.c
index 21eb2a1..de2b9f5 100644
--- a/dlls/msi/tests/db.c
+++ b/dlls/msi/tests/db.c
@@ -8702,6 +8702,7 @@ static void test_columnorder(void)
 
     query = "SELECT * FROM `T`";
     r = do_query(hdb, query, &rec);
+    ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
 
     sz = MAX_PATH;
     lstrcpyA(buf, "kiwi");




More information about the wine-cvs mailing list