diff options
author | Keith Whitwell <[email protected]> | 2005-02-11 09:34:05 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2005-02-11 09:34:05 +0000 |
commit | a0c85249244e1af8dac88076d5f384cf4bd01236 (patch) | |
tree | 29df8170864a29fc368e25afa4fb63e72df1aa31 /src/mesa/main/enums.c | |
parent | 2d10924a14c439376816c5398cecd46e940482fd (diff) |
mesa-main-0-NULL.patch from Jeff Muizelaar
Diffstat (limited to 'src/mesa/main/enums.c')
-rw-r--r-- | src/mesa/main/enums.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/enums.c b/src/mesa/main/enums.c index 8f61187a3da..946b5b96a45 100644 --- a/src/mesa/main/enums.c +++ b/src/mesa/main/enums.c @@ -964,8 +964,8 @@ static enum_elt all_enums[] = typedef int (*cfunc)(const void *, const void *); -static enum_elt **index1 = 0; -static int sorted = 0; +static enum_elt **index1; +static int sorted; static int compar_name( const enum_elt *a, const enum_elt *b ) { |