summaryrefslogtreecommitdiff
path: root/src/mesa/main/get.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-07-21 15:41:08 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-07-21 15:41:08 +0000
commitf7d503376fd4a832e6fee31993551ae3852b16b0 (patch)
tree6c53327976d3baab78de32e969c065985d196ad3 /src/mesa/main/get.c
parentc7d1444f9c12263239c148c97b61d9a22343f8d9 (diff)
removed beta from version string
Diffstat (limited to 'src/mesa/main/get.c')
-rw-r--r--src/mesa/main/get.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c
index 2c349c7719..7e71d6528e 100644
--- a/src/mesa/main/get.c
+++ b/src/mesa/main/get.c
@@ -1,4 +1,4 @@
-/* $Id: get.c,v 1.29 2000/05/23 20:10:49 brianp Exp $ */
+/* $Id: get.c,v 1.30 2000/07/21 15:41:08 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -4671,9 +4671,9 @@ const GLubyte *
_mesa_GetString( GLenum name )
{
GET_CURRENT_CONTEXT(ctx);
- static char *vendor = "Brian Paul";
- static char *renderer = "Mesa";
- static char *version = "1.2 Mesa 3.3 beta";
+ static const char *vendor = "Brian Paul";
+ static const char *renderer = "Mesa";
+ static const char *version = "1.2 Mesa 3.3";
ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH_WITH_RETVAL(ctx, "glGetString", 0);