diff options
author | Michal Krol <[email protected]> | 2007-10-28 16:36:07 +0000 |
---|---|---|
committer | Michal Krol <[email protected]> | 2007-10-28 17:34:36 +0000 |
commit | b85cd7b70096cf7c922aed56ae8255fb4b8f0709 (patch) | |
tree | 0960ed137535c74ddf8bee3a101f5b0696629605 /src/mesa/pipe/softpipe/sp_context.c | |
parent | 2953415223fc61e92305453d60714c7e919b604d (diff) |
Use FREE and MALLOC instead of free and malloc.
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_context.c')
-rw-r--r-- | src/mesa/pipe/softpipe/sp_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/softpipe/sp_context.c b/src/mesa/pipe/softpipe/sp_context.c index 22493f47036..3a1861cb62f 100644 --- a/src/mesa/pipe/softpipe/sp_context.c +++ b/src/mesa/pipe/softpipe/sp_context.c @@ -227,7 +227,7 @@ static void softpipe_destroy( struct pipe_context *pipe ) softpipe->quad.colormask->destroy( softpipe->quad.colormask ); softpipe->quad.output->destroy( softpipe->quad.output ); - free( softpipe ); + FREE( softpipe ); } |