summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2014-01-31 17:27:04 -0700
committerCarl Worth <cworth@cworth.org>2014-03-04 12:58:30 -0800
commite10b0e0f50e65e59305bc93e649b0db5bc0276ac (patch)
treed3045a1064af3f0dec00d3eed76acb480f3dced0
parentb74da80b71ae9799ba06cfcfdcd3307db3fb2208 (diff)
downloadmesa-e10b0e0f50e65e59305bc93e649b0db5bc0276ac.tar.gz
gallium/auxiliary/indices: replace free() with FREE()
To match the CALLOC_STRUCT() call. Cc: "10.0, 10.1" <mesa-stable@lists.freedesktop.org> Reviewed-by: Jose Fonseca <jfonseca@vmware.com> (cherry picked from commit 307fd76053da39242ada2701b0d32b2177fe3493)
-rw-r--r--src/gallium/auxiliary/indices/u_primconvert.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/indices/u_primconvert.c b/src/gallium/auxiliary/indices/u_primconvert.c
index 14da7a68e3e..f2a77ceb2cb 100644
--- a/src/gallium/auxiliary/indices/u_primconvert.c
+++ b/src/gallium/auxiliary/indices/u_primconvert.c
@@ -74,7 +74,7 @@ void
util_primconvert_destroy(struct primconvert_context *pc)
{
util_primconvert_save_index_buffer(pc, NULL);
- free(pc);
+ FREE(pc);
}
void