usp10/tests: Fix a signed/unsigned int mismatch.

Francois Gouget fgouget at free.fr
Sun May 27 06:17:56 CDT 2007


---
This fixes a Visual C++ 2005 warning.


 dlls/usp10/tests/usp10.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/dlls/usp10/tests/usp10.c b/dlls/usp10/tests/usp10.c
index 40840c3..54d826f 100644
--- a/dlls/usp10/tests/usp10.c
+++ b/dlls/usp10/tests/usp10.c
@@ -622,7 +622,8 @@ static void test_ScriptString(HDC hdc)
     int             MaxSel = 0;
     BOOL            Disabled = FALSE;
     const int      *clip_len;
-    UINT           *order, i;
+    int            i;
+    UINT           *order;
 
 
     Charset = -1;     /* this flag indicates unicode input */
-- 
1.4.4.4




More information about the wine-patches mailing list