From 012bd7c7c048c470fe97e467ae4f7068cc4d83ef Mon Sep 17 00:00:00 2001 From: Michael Weber Date: Thu, 29 Nov 2012 23:31:21 +0100 Subject: [PATCH] replace xfree with free --- conf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf.c b/conf.c index 30ede1a..c53ae8d 100644 --- a/conf.c +++ b/conf.c @@ -226,8 +226,8 @@ conf_clear(struct conf *c) while ((as = TAILQ_FIRST(&c->autostartq)) != NULL) { TAILQ_REMOVE(&c->autostartq, as, entry); - xfree(as->cmd); - xfree(as); + free(as->cmd); + free(as); } while ((wm = TAILQ_FIRST(&c->ignoreq)) != NULL) {