From 70a86c14f4462ba59a9d6bbd3c9e9f0c75483777 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 7 Jun 2011 13:53:53 -0500 Subject: Require handle for alpm_checkconflicts() Signed-off-by: Dan McGee --- src/util/testdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/util') 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), -- cgit v1.2.3-24-g4f1b