From 149ac3fcdcfcc4fd5694478c1de25ff57a971992 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Sun, 27 May 2007 13:17:56 +0200 Subject: [PATCH] usp10/tests: Fix a signed/unsigned int mismatch. --- dlls/usp10/tests/usp10.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/usp10/tests/usp10.c b/dlls/usp10/tests/usp10.c index 40840c3b364..54d826f2da8 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 */