PATCH: dlls/d3d8/shader.c signedness

Marcus Meissner marcus at jet.franken.de
Sun Jul 10 06:21:09 CDT 2005


Hi,

Changelog:
	fixed signedness issues.

Index: dlls/d3d8/shader.c
===================================================================
RCS file: /home/wine/wine/dlls/d3d8/shader.c,v
retrieving revision 1.32
diff -u -r1.32 shader.c
--- dlls/d3d8/shader.c	24 Jan 2005 11:29:44 -0000	1.32
+++ dlls/d3d8/shader.c	10 Jul 2005 11:19:21 -0000
@@ -1619,7 +1619,7 @@
   }
 }	
 
-inline static void addline(int* lineNum, char* pgm, char* line)
+inline static void addline(unsigned int* lineNum, char* pgm, char* line)
 {
   ++(*lineNum);
   TRACE_(d3d_hw_shader)("GL HW (%u, %u) : %s\n", *lineNum, strlen(pgm), line);
-- 



More information about the wine-patches mailing list