| commit | bd5cdaf4442872d3cd2ff94eeafadd481d27fcfb | [log] [tgz] |
|---|---|---|
| author | Brian Paul <brian.paul@tungstengraphics.com> | Wed Oct 13 18:42:49 1999 +0000 |
| committer | Brian Paul <brian.paul@tungstengraphics.com> | Wed Oct 13 18:42:49 1999 +0000 |
| tree | 0adfaaa95b9d0b5334a7a45e3599ef905b188bb2 | |
| parent | 1a3b8ffe01a3844d990627db3d5f2f04006f17eb [diff] [blame] |
removed GL_ prefix from memory macros
diff --git a/src/mesa/main/texobj.c b/src/mesa/main/texobj.c index e46b318..60a142e 100644 --- a/src/mesa/main/texobj.c +++ b/src/mesa/main/texobj.c
@@ -1,4 +1,4 @@ -/* $Id: texobj.c,v 1.5 1999/10/10 13:04:17 brianp Exp $ */ +/* $Id: texobj.c,v 1.6 1999/10/13 18:42:50 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -159,7 +159,7 @@ } } /* free this object */ - GL_FREE( t ); + FREE( t ); }