summaryrefslogtreecommitdiffstats
path: root/alias.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2002-12-10 20:56:47 +0000
committerThomas Roessler <roessler@does-not-exist.org>2002-12-10 20:56:47 +0000
commitb62866d93e48a510912a1f503d907a2320da9238 (patch)
tree807a4c446cbec93779394a22cbc645430c8c94b1 /alias.c
parentcd96c3449e02199afe9cde511f128bb387f5f4d3 (diff)
Replace safe_free calls by the FREE macro.
Diffstat (limited to 'alias.c')
-rw-r--r--alias.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/alias.c b/alias.c
index b31e9b5e..5e551918 100644
--- a/alias.c
+++ b/alias.c
@@ -469,7 +469,7 @@ int mutt_alias_complete (char *s, size_t buflen)
{
a_cur = a_list;
a_list = a_list->next;
- safe_free ((void **) &a_cur);
+ FREE (&a_cur);
}
/* remove any aliases marked for deletion */