fix compiler warning (windows)
authorKarl Schultz <kschultz@freedesktop.org>
Tue, 12 Feb 2002 16:45:22 +0000 (16:45 +0000)
committerKarl Schultz <kschultz@freedesktop.org>
Tue, 12 Feb 2002 16:45:22 +0000 (16:45 +0000)
src/mesa/swrast/s_blend.c

index c1f207d32b8a6b86d8867fd82215201e91490f5e..52409cde972a1a3b73030dd0356478dff9860abe 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: s_blend.c,v 1.12 2002/02/02 21:40:33 brianp Exp $ */
+/* $Id: s_blend.c,v 1.13 2002/02/12 16:45:22 kschultz Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -52,7 +52,7 @@ static void _BLENDAPI
 blend_noop( GLcontext *ctx, GLuint n, const GLubyte mask[],
             GLchan rgba[][4], CONST GLchan dest[][4] )
 {
-   int i;
+   GLuint i;
    ASSERT(ctx->Color.BlendEquation==GL_FUNC_ADD_EXT);
    ASSERT(ctx->Color.BlendSrcRGB==GL_ZERO);
    ASSERT(ctx->Color.BlendDstRGB==GL_ONE);