From bfa012d98517174a38cb056060ebb21d6fe3cf4e Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 23 Feb 2000 16:01:40 +0000 Subject: changed a GLuint to GLint --- src/mesa/glapi/glapi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa/glapi') diff --git a/src/mesa/glapi/glapi.c b/src/mesa/glapi/glapi.c index 89cceddc77..3ae7379e69 100644 --- a/src/mesa/glapi/glapi.c +++ b/src/mesa/glapi/glapi.c @@ -1,4 +1,4 @@ -/* $Id: glapi.c,v 1.35 2000/02/12 21:08:00 brianp Exp $ */ +/* $Id: glapi.c,v 1.36 2000/02/23 16:01:40 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -256,7 +256,7 @@ get_static_proc_offset(const char *funcName) static GLvoid * get_static_proc_address(const char *funcName) { - GLuint i = get_static_proc_offset(funcName); + GLint i = get_static_proc_offset(funcName); if (i >= 0) return static_functions[i].Address; else -- cgit v1.2.3