diff options
author | Dan McGee <dan@archlinux.org> | 2011-06-07 20:53:53 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-06-14 02:35:22 +0200 |
commit | 70a86c14f4462ba59a9d6bbd3c9e9f0c75483777 (patch) | |
tree | dfbee1a5ec1ecf87445a984ef5f4ce38ad1d3f41 /src/util/testdb.c | |
parent | d76341297a089864cf9bb509873bdcff83755f6c (diff) | |
download | pacman-70a86c14f4462ba59a9d6bbd3c9e9f0c75483777.tar.gz pacman-70a86c14f4462ba59a9d6bbd3c9e9f0c75483777.tar.xz |
Require handle for alpm_checkconflicts()
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src/util/testdb.c')
-rw-r--r-- | src/util/testdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/testdb.c b/src/util/testdb.c index 620328e2..839a9cf7 100644 --- a/src/util/testdb.c +++ b/src/util/testdb.c @@ -117,7 +117,7 @@ static int checkconflicts(alpm_list_t *pkglist) alpm_list_t *data, *i; int ret = 0; /* check conflicts */ - data = alpm_checkconflicts(pkglist); + data = alpm_checkconflicts(handle, pkglist); for(i = data; i; i = i->next) { pmconflict_t *conflict = alpm_list_getdata(i); printf("%s conflicts with %s\n", alpm_conflict_get_package1(conflict), |