projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
826e66a
)
fixed dumb typo
author
Brian Paul
<brian.paul@tungstengraphics.com>
Sun, 10 Oct 1999 12:49:36 +0000
(12:49 +0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Sun, 10 Oct 1999 12:49:36 +0000
(12:49 +0000)
src/mesa/main/context.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/context.c
b/src/mesa/main/context.c
index 2f208d2de7c15dc200a634c7151e339906de395d..8d9c6e7036084007a3dcae06edf92f48689dfb9e 100644
(file)
--- a/
src/mesa/main/context.c
+++ b/
src/mesa/main/context.c
@@
-1,4
+1,4
@@
-/* $Id: context.c,v 1.1
2 1999/10/10 12:39:1
6 brianp Exp $ */
+/* $Id: context.c,v 1.1
3 1999/10/10 12:49:3
6 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@
-113,7
+113,7
@@
*/
void *gl_alloc(size_t bytes)
{
- return
GL_ALLOC
(bytes);
+ return
malloc
(bytes);
}
/*