diff options
-rw-r--r-- | lib/libalpm/add.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libalpm/add.c b/lib/libalpm/add.c index ea6cf6b3..e63da6f4 100644 --- a/lib/libalpm/add.c +++ b/lib/libalpm/add.c @@ -202,13 +202,12 @@ int add_prepare(pmtrans_t *trans, pmdb_t *db, PMList **data) /* Check dependencies */ if(!(trans->flags & PM_TRANS_FLAG_NODEPS)) { - PMList *i; - EVENT(trans, PM_TRANS_EVT_CHECKDEPS_START, NULL, NULL); _alpm_log(PM_LOG_FLOW1, "looking for conflicts or unsatisfied dependencies"); lp = checkdeps(db, trans->type, trans->packages); if(lp != NULL) { + PMList *i; int errorout = 0; /* look for unsatisfied dependencies */ |