diff options
author | Brian Paul <[email protected]> | 2013-10-29 14:11:01 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-10-31 08:21:58 -0600 |
commit | 717621acff73784adec35df81470a7adcb2e7ff0 (patch) | |
tree | c1c23953376dec027663b4bb216e23d6192fe610 /src/mesa/main/uniforms.c | |
parent | 010f8762e8b80fac43e18a9feaad7a37e8097be6 (diff) |
mesa: fix some MSVC signed/unsigned compiler warnings
Diffstat (limited to 'src/mesa/main/uniforms.c')
-rw-r--r-- | src/mesa/main/uniforms.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/uniforms.c b/src/mesa/main/uniforms.c index 2e847fe3147..17e24f6788d 100644 --- a/src/mesa/main/uniforms.c +++ b/src/mesa/main/uniforms.c @@ -853,7 +853,7 @@ _mesa_GetActiveAtomicCounterBufferiv(GLuint program, GLuint bufferIndex, GET_CURRENT_CONTEXT(ctx); struct gl_shader_program *shProg; struct gl_active_atomic_buffer *ab; - int i; + GLuint i; if (!ctx->Extensions.ARB_shader_atomic_counters) { _mesa_error(ctx, GL_INVALID_OPERATION, |