summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/deps.c
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-09-19 21:32:53 +0200
committerDan McGee <dan@archlinux.org>2011-09-20 17:23:10 +0200
commit79cbce60ac4a40bf11d039e9bdcd09c852ce3292 (patch)
treec13c3310fb1167f448c238188a93873a63c4092d /lib/libalpm/deps.c
parent70e2c34f0f5db329b8e92fe3fc3043e495272f14 (diff)
downloadpacman-79cbce60ac4a40bf11d039e9bdcd09c852ce3292.tar.gz
pacman-79cbce60ac4a40bf11d039e9bdcd09c852ce3292.tar.xz
Remove all usages of alpm_list_getdata() from the library
No need for the indirection; just access ->data instead. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/deps.c')
-rw-r--r--lib/libalpm/deps.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libalpm/deps.c b/lib/libalpm/deps.c
index 0da20c16..08494a6c 100644
--- a/lib/libalpm/deps.c
+++ b/lib/libalpm/deps.c
@@ -644,7 +644,8 @@ static alpm_pkg_t *resolvedep(alpm_handle_t *handle, alpm_depend_t *dep,
providers, dep, NULL, &index);
}
if(index >= 0 && index < count) {
- alpm_pkg_t *pkg = alpm_list_getdata(alpm_list_nth(providers, index));
+ alpm_list_t *nth = alpm_list_nth(providers, index);
+ alpm_pkg_t *pkg = nth->data;
alpm_list_free(providers);
return pkg;
}