From 2669dfeb609a62b8d958af4cd4b2156e11100e1d Mon Sep 17 00:00:00 2001 From: Aurelien Foret Date: Wed, 13 Apr 2005 20:00:05 +0000 Subject: replaced a call to list_free by the macro FREELIST --- lib/libalpm/alpm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libalpm') diff --git a/lib/libalpm/alpm.c b/lib/libalpm/alpm.c index 63e66344..8afe73b4 100644 --- a/lib/libalpm/alpm.c +++ b/lib/libalpm/alpm.c @@ -698,7 +698,7 @@ int alpm_list_free(PM_LIST *entry) if(entry) { /* ORE does not free all memory for packages... */ - pm_list_free(entry); + FREELIST(entry); } return(0); -- cgit v1.2.3-24-g4f1b