diff options
| author | Brian Paul <brian.paul@tungstengraphics.com> | 2000-02-23 16:01:40 +0000 | 
|---|---|---|
| committer | Brian Paul <brian.paul@tungstengraphics.com> | 2000-02-23 16:01:40 +0000 | 
| commit | bfa012d98517174a38cb056060ebb21d6fe3cf4e (patch) | |
| tree | d7e8bdbdd5ac625ef0d8a6b432b3f498261d5bc3 | |
| parent | ecfa382144894e03b50a836239f655fccccfb310 (diff) | |
changed a GLuint to GLint
| -rw-r--r-- | src/mesa/glapi/glapi.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| 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 | 
