summaryrefslogtreecommitdiff
path: root/m4/m4.c
diff options
context:
space:
mode:
Diffstat (limited to 'm4/m4.c')
-rw-r--r--m4/m4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/m4.c b/m4/m4.c
index 49604e07..1ba5a6c7 100644
--- a/m4/m4.c
+++ b/m4/m4.c
@@ -74,7 +74,7 @@ m4_delete (m4 *context)
m4__search_path *stale = path;
path = path->next;
- free ((void*) stale->dir);
+ DELETE (stale->dir); /* Cast away const. */
free (stale);
}
free (context->search_path);