index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | src/pacman/query.c | 2 |
diff --git a/src/pacman/query.c b/src/pacman/query.c index 22e16b84..6f4f7c4c 100644 --- a/src/pacman/query.c +++ b/src/pacman/query.c @@ -206,7 +206,7 @@ int pacman_query(list_t *targets) } if(pmo_q_orphans) { if(alpm_pkg_getinfo(info, PM_PKG_REQUIREDBY) == NULL - && alpm_pkg_getinfo(info, PM_PKG_REASON) == PM_PKG_REASON_EXPLICIT) { + && (int)alpm_pkg_getinfo(info, PM_PKG_REASON) == PM_PKG_REASON_EXPLICIT) { MSG(NL, "%s %s\n", pkgname, pkgver); } } |