summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>1999-10-10 12:49:36 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>1999-10-10 12:49:36 +0000
commit375853e86734ea5735aa64af3a7aa0129bc551d5 (patch)
treeb267d3956fc78dc7f4b64077d158ec44fed0a79c /src
parent826e66a21f01c779771da429be1ea67c468b27e1 (diff)
fixed dumb typo
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/context.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c
index 2f208d2de7..8d9c6e7036 100644
--- a/src/mesa/main/context.c
+++ b/src/mesa/main/context.c
@@ -1,4 +1,4 @@
-/* $Id: context.c,v 1.12 1999/10/10 12:39:16 brianp Exp $ */
+/* $Id: context.c,v 1.13 1999/10/10 12:49:36 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -113,7 +113,7 @@
*/
void *gl_alloc(size_t bytes)
{
- return GL_ALLOC(bytes);
+ return malloc(bytes);
}
/*