summaryrefslogtreecommitdiffstats
path: root/src/pacman/pacman.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pacman/pacman.c')
-rw-r--r--src/pacman/pacman.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c
index 730d9207..7f13f39e 100644
--- a/src/pacman/pacman.c
+++ b/src/pacman/pacman.c
@@ -167,7 +167,8 @@ int main(int argc, char *argv[])
}
/* Opening local database */
- if(alpm_db_register("local", &db_local) == -1) {
+ db_local = alpm_db_register("local");
+ if(db_local == NULL) {
ERR(NL, "could not register 'local' database (%s)\n", alpm_strerror(pm_errno));
cleanup(1);
}