From: Brian Paul Date: Mon, 8 Jul 2013 16:00:29 +0000 (-0600) Subject: mesa: s/unsigned/int/ to fix MSVC warning in uniforms.c X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2cfd768473896a537b160111005b4ffc9e1693a4;p=mesa.git mesa: s/unsigned/int/ to fix MSVC warning in uniforms.c --- diff --git a/src/mesa/main/uniforms.c b/src/mesa/main/uniforms.c index 17e62403de2..1e6f7f483c4 100644 --- a/src/mesa/main/uniforms.c +++ b/src/mesa/main/uniforms.c @@ -832,7 +832,7 @@ _mesa_get_uniform_name(const struct gl_uniform_storage *uni, * harm in always appending "[0]" to uniform array names. */ if (uni->array_elements != 0) { - unsigned i; + int i; /* The comparison is strange because *length does *NOT* include the * terminating NUL, but maxLength does.