diff options
| -rw-r--r-- | lib/libalpm/alpm_list.c | 16 | ||||
| -rw-r--r-- | lib/libalpm/alpm_list.h | 1 | ||||
| -rw-r--r-- | src/pacman/util.c | 2 | 
3 files changed, 1 insertions, 18 deletions
diff --git a/lib/libalpm/alpm_list.c b/lib/libalpm/alpm_list.c index 1976e13d..38cefa62 100644 --- a/lib/libalpm/alpm_list.c +++ b/lib/libalpm/alpm_list.c @@ -507,22 +507,6 @@ alpm_list_t SYMEXPORT *alpm_list_reverse(alpm_list_t *list)  /* Accessors */  /** - * @brief Get the first element of a list. - * - * @param list the list - * - * @return the first element in the list - */ -inline alpm_list_t SYMEXPORT *alpm_list_first(const alpm_list_t *list) -{ -	if(list) { -		return (alpm_list_t *)list; -	} else { -		return NULL; -	} -} - -/**   * @brief Return nth element from list (starting from 0).   *   * @param list the list diff --git a/lib/libalpm/alpm_list.h b/lib/libalpm/alpm_list.h index 27a76d12..824e8660 100644 --- a/lib/libalpm/alpm_list.h +++ b/lib/libalpm/alpm_list.h @@ -67,7 +67,6 @@ alpm_list_t *alpm_list_copy_data(const alpm_list_t *list, size_t size);  alpm_list_t *alpm_list_reverse(alpm_list_t *list);  /* item accessors */ -alpm_list_t *alpm_list_first(const alpm_list_t *list);  alpm_list_t *alpm_list_nth(const alpm_list_t *list, size_t n);  alpm_list_t *alpm_list_next(const alpm_list_t *list);  alpm_list_t *alpm_list_previous(const alpm_list_t *list, const alpm_list_t *node); 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);  		}  | 
