From: Brian Paul Date: Wed, 23 Feb 2000 16:01:40 +0000 (+0000) Subject: changed a GLuint to GLint X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bfa012d98517174a38cb056060ebb21d6fe3cf4e;p=mesa.git changed a GLuint to GLint --- diff --git a/src/mesa/glapi/glapi.c b/src/mesa/glapi/glapi.c index 89cceddc77b..3ae7379e69a 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