1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00

Actually return the error value of check_db_local

Signed-off-by: Charles Pigott <charlespigott@googlemail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Charles Pigott 2015-03-08 12:11:09 +10:00 committed by Allan McRae
parent f9cb4f3b9c
commit f34e48a988

View File

@ -253,7 +253,7 @@ static int check_db_local(void) {
ret += check_db_local_package_conflicts(pkglist);
ret += check_db_local_filelist_conflicts(pkglist);
return 0;
return ret;
}
/**