diff options
author | Ben Skeggs <[email protected]> | 2008-07-11 00:15:01 +1000 |
---|---|---|
committer | Ben Skeggs <[email protected]> | 2008-07-11 00:15:01 +1000 |
commit | 861629d1fd4a1d256c913470c33d9522e83d615d (patch) | |
tree | b462582f36bfaa36265589465e87e0293348370e /src/gallium/drivers/nv50/nv50_context.c | |
parent | 19171ab1d30f14ac0d39894125a3d53a91ca5b89 (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.c | 2 |
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 a225c4bf728..2494784a94e 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); } |