summaryrefslogtreecommitdiff
path: root/src/mesa/shader/symbol_table.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/shader/symbol_table.c')
-rw-r--r--src/mesa/shader/symbol_table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/symbol_table.c b/src/mesa/shader/symbol_table.c
index 1f6d9b844d..6a5d686897 100644
--- a/src/mesa/shader/symbol_table.c
+++ b/src/mesa/shader/symbol_table.c
@@ -354,7 +354,7 @@ _mesa_symbol_table_dtor(struct _mesa_symbol_table *table)
for (hdr = table->hdr; hdr != NULL; hdr = next) {
next = hdr->next;
- _mesa_free(hdr);
+ free(hdr);
}
hash_table_dtor(table->ht);