summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/draw/draw_context.c
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-08-14 17:20:40 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-08-14 17:20:40 -0600
commit681b1ebd5e1a94961a1d38b3018af97a10d2d5b0 (patch)
tree6ed60d5612daabd5deb484596e23a62221f01da5 /src/mesa/pipe/draw/draw_context.c
parent9623683dfcb03ce42746765ba3e706b6a7085d39 (diff)
use regular malloc/free instead of macros
Diffstat (limited to 'src/mesa/pipe/draw/draw_context.c')
-rw-r--r--src/mesa/pipe/draw/draw_context.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/pipe/draw/draw_context.c b/src/mesa/pipe/draw/draw_context.c
index 4335b47e09..0707c03e5f 100644
--- a/src/mesa/pipe/draw/draw_context.c
+++ b/src/mesa/pipe/draw/draw_context.c
@@ -80,8 +80,8 @@ void draw_destroy( struct draw_context *draw )
vf_destroy( draw->vf );
- FREE( draw->vcache.vertex[0] ); /* Frees all the vertices. */
- FREE( draw );
+ free( draw->vcache.vertex[0] ); /* Frees all the vertices. */
+ free( draw );
}