summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nv50/nv50_context.c
diff options
context:
space:
mode:
authorBen Skeggs <skeggsb@gmail.com>2008-07-11 00:15:01 +1000
committerBen Skeggs <skeggsb@gmail.com>2008-07-11 00:15:01 +1000
commit861629d1fd4a1d256c913470c33d9522e83d615d (patch)
treeb462582f36bfaa36265589465e87e0293348370e /src/gallium/drivers/nv50/nv50_context.c
parent19171ab1d30f14ac0d39894125a3d53a91ca5b89 (diff)
nv50: more "abuse" by using libc malloc etc..
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_context.c')
-rw-r--r--src/gallium/drivers/nv50/nv50_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv50/nv50_context.c b/src/gallium/drivers/nv50/nv50_context.c
index a225c4bf72..2494784a94 100644
--- a/src/gallium/drivers/nv50/nv50_context.c
+++ b/src/gallium/drivers/nv50/nv50_context.c
@@ -21,7 +21,7 @@ nv50_destroy(struct pipe_context *pipe)
struct nv50_context *nv50 = (struct nv50_context *)pipe;
draw_destroy(nv50->draw);
- free(nv50);
+ FREE(nv50);
}