Marko Nikolic : comctl32/tests: Removed sign comparison warnings.

Alexandre Julliard julliard at winehq.org
Mon Oct 4 11:04:04 CDT 2010


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

Author: Marko Nikolic <grkoma at gmail.com>
Date:   Sat Oct  2 01:29:45 2010 +0200

comctl32/tests: Removed sign comparison warnings.

---

 dlls/comctl32/tests/comboex.c |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/dlls/comctl32/tests/comboex.c b/dlls/comctl32/tests/comboex.c
index f9a42df..a747500 100644
--- a/dlls/comctl32/tests/comboex.c
+++ b/dlls/comctl32/tests/comboex.c
@@ -234,7 +234,8 @@ static void test_WM_LBUTTONDOWN(void)
     COMBOBOXINFO cbInfo;
     UINT x, y, item_height;
     LRESULT result;
-    int i, idx;
+    UINT i;
+    int idx;
     RECT rect;
     WCHAR buffer[3];
     static const UINT choices[] = {8,9,10,11,12,14,16,18,20,22,24,26,28,36,48,72};
@@ -503,16 +504,16 @@ static void test_get_set_item(void)
     item.lParam = 0xdeadbeef;
     ret = SendMessage(hComboEx, CBEM_GETITEMA, 0, (LPARAM)&item);
     expect(TRUE, ret);
-    ok(item.lParam == 0, "Expected zero, got %ld\n", item.lParam);
+    ok(item.lParam == 0, "Expected zero, got %lx\n", item.lParam);
 
-    item.lParam = 0xdeadbeef;
+    item.lParam = 0x1abe11ed;
     ret = SendMessage(hComboEx, CBEM_SETITEMA, 0, (LPARAM)&item);
     expect(TRUE, ret);
 
     item.lParam = 0;
     ret = SendMessage(hComboEx, CBEM_GETITEMA, 0, (LPARAM)&item);
     expect(TRUE, ret);
-    ok(item.lParam == 0xdeadbeef, "Expected 0xdeadbeef, got %ld\n", item.lParam);
+    ok(item.lParam == 0x1abe11ed, "Expected 0x1abe11ed, got %lx\n", item.lParam);
 
     DestroyWindow(hComboEx);
 }




More information about the wine-cvs mailing list