From: Brian Paul Date: Sun, 4 Nov 2012 23:43:44 +0000 (-0700) Subject: tnl: fix MSVC signed/unsigned warnings X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cb5fb155780d6a697d1efde123f3e8080f5bfd45;p=mesa.git tnl: fix MSVC signed/unsigned warnings Reviewed-by: Jose Fonseca --- diff --git a/src/mesa/tnl/t_draw.c b/src/mesa/tnl/t_draw.c index 6a3c9662e96..0631eb183f1 100644 --- a/src/mesa/tnl/t_draw.c +++ b/src/mesa/tnl/t_draw.c @@ -141,7 +141,8 @@ convert_fixed_to_float(const struct gl_client_array *input, const GLubyte *ptr, GLfloat *fptr, GLuint count) { - GLuint i, j; + GLuint i; + GLint j; const GLint size = input->Size; if (input->Normalized) {