From 3a458783a2617b7b22a756f95b5f66f3da79146f Mon Sep 17 00:00:00 2001 From: Diogo Sousa Date: Mon, 29 Aug 2011 02:51:32 +0100 Subject: Removed multiple definitions of pkgfrom_t libalpm now exports type alpm_pkgfrom_t in alpm.h, which may be used by frontends. Pacman now uses alpm_pkgfrom_t instead of replicating that type (pkg_from as was in src/pacman/package.h) Updated API change in README. Signed-off-by: Diogo Sousa Signed-off-by: Dan McGee --- src/pacman/package.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pacman/package.c') diff --git a/src/pacman/package.c b/src/pacman/package.c index a8c15eb8..f7065d54 100644 --- a/src/pacman/package.c +++ b/src/pacman/package.c @@ -61,7 +61,7 @@ static void deplist_display(const char *title, * @param from the type of package we are dealing with * @param extra should we show extra information */ -void dump_pkg_full(alpm_pkg_t *pkg, enum pkg_from from, int extra) +void dump_pkg_full(alpm_pkg_t *pkg, alpm_pkgfrom_t from, int extra) { const char *reason; time_t bdate, idate; -- cgit v1.2.3-24-g4f1b