Francois Gouget : usp10/tests: Fix a signed/unsigned int mismatch.
Module: wine Branch: master Commit: 149ac3fcdcfcc4fd5694478c1de25ff57a971992 URL: http://source.winehq.org/git/wine.git/?a=commit;h=149ac3fcdcfcc4fd5694478c1d... Author: Francois Gouget <fgouget(a)free.fr> Date: Sun May 27 13:17:56 2007 +0200 usp10/tests: Fix a signed/unsigned int mismatch. --- 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 */
participants (1)
-
Alexandre Julliard