From 49cea4d40cff8399057bcac0e11a8c33435b88a0 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Sun, 4 Nov 2012 16:43:44 -0700 Subject: [PATCH] mesa: s/int/GLuint/ in get.c to silence MSVC warnings Reviewed-by: Jose Fonseca --- src/mesa/main/get.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index c34d873f26d..fccad670d57 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -1480,7 +1480,7 @@ _mesa_GetDoublev(GLenum pname, GLdouble *params) } static enum value_type -find_value_indexed(const char *func, GLenum pname, int index, union value *v) +find_value_indexed(const char *func, GLenum pname, GLuint index, union value *v) { GET_CURRENT_CONTEXT(ctx); -- 2.30.2