diff options
author | Aurelien Foret <aurelien@archlinux.org> | 2005-04-13 20:00:05 +0000 |
---|---|---|
committer | Aurelien Foret <aurelien@archlinux.org> | 2005-04-13 20:00:05 +0000 |
commit | 2669dfeb609a62b8d958af4cd4b2156e11100e1d (patch) | |
tree | 5e3c20ccfd1e1ce2dac3d40536ca9ecbe0bd7af8 /lib/libalpm/alpm.c | |
parent | e115a5829e6a9cbde3c16659d626abaca0a7095a (diff) | |
download | pacman-2669dfeb609a62b8d958af4cd4b2156e11100e1d.tar.xz |
replaced a call to list_free by the macro FREELIST
Diffstat (limited to 'lib/libalpm/alpm.c')
-rw-r--r-- | lib/libalpm/alpm.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |