Two minor dlls/d3d9/tests/visual.c type fixes

Gerald Pfeifer gerald at pfeifer.com
Fri Jul 18 10:17:26 CDT 2008


ChangeLog:
Fix type of loop variable in stream_test() and texop_test().

Index: dlls/d3d9/tests/visual.c
===================================================================
RCS file: /home/wine/wine/dlls/d3d9/tests/visual.c,v
retrieving revision 1.133
diff -u -3 -p -r1.133 visual.c
--- dlls/d3d9/tests/visual.c	18 Jul 2008 11:50:14 -0000	1.133
+++ dlls/d3d9/tests/visual.c	18 Jul 2008 15:15:11 -0000
@@ -8723,7 +8723,7 @@ static void stream_test(IDirect3DDevice9
     BYTE *data;
     DWORD color;
     DWORD ind;
-    int i;
+    unsigned i;
 
     const DWORD shader_code[] =
     {
@@ -9065,7 +9065,7 @@ static void texop_test(IDirect3DDevice9 
     D3DCOLOR color;
     D3DCAPS9 caps;
     HRESULT hr;
-    int i;
+    unsigned i;
 
     static const struct {
         float x, y, z;



More information about the wine-patches mailing list