From 97103f860d48e1f6f9c0dd7c75568618f8ed5163 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Mon, 4 Jul 2011 08:38:09 +1000 Subject: Remove alpm_list_first The only thing this accessor did was remove the const qualifier given our entire list implementation requires passing around the head anyway. Signed-off-by: Allan McRae Signed-off-by: Dan McGee --- src/pacman/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pacman') diff --git a/src/pacman/util.c b/src/pacman/util.c index c367d36e..deb3e056 100644 --- a/src/pacman/util.c +++ b/src/pacman/util.c @@ -841,7 +841,7 @@ out: /* cleanup */ if(config->verbosepkglists) { /* targets is a list of lists of strings, free inner lists here */ - for(j = alpm_list_first(targets); j; j = alpm_list_next(j)) { + for(j = targets; j; j = alpm_list_next(j)) { lp = alpm_list_getdata(j); FREELIST(lp); } -- cgit v1.2.3-24-g4f1b