From: Karl Schultz Date: Tue, 13 Jan 2004 01:09:17 +0000 (+0000) Subject: change type of loop index var to remove compiler warning. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1852f4fa338765bf62b21ea7644e43cc19a1d77f;p=mesa.git change type of loop index var to remove compiler warning. --- diff --git a/src/mesa/swrast_setup/ss_context.c b/src/mesa/swrast_setup/ss_context.c index c1d932f245f..ef83dd42370 100644 --- a/src/mesa/swrast_setup/ss_context.c +++ b/src/mesa/swrast_setup/ss_context.c @@ -217,7 +217,7 @@ _swsetup_Translate( GLcontext *ctx, const void *vertex, SWvertex *dest ) { const GLfloat *m = ctx->Viewport._WindowMap.m; GLfloat tmp[4]; - GLint i; + GLuint i; _tnl_get_attr( ctx, vertex, _TNL_ATTRIB_POS, tmp );