From 991be2867259ee58d43a5005eec466ef2b546af5 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Sun, 12 Feb 2012 09:50:34 +1000 Subject: Do not check for ALPM_ERR_PKG_INVALID_ARCH on remove operation alpm_trans_prepare can not return ALPM_ERR_PKG_INVALID_ARCH on a remove operation so there is no point in checking for it. Signed-off-by: Allan McRae Signed-off-by: Dan McGee --- src/pacman/remove.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/pacman/remove.c b/src/pacman/remove.c index 96bb5373..52d2c7ac 100644 --- a/src/pacman/remove.c +++ b/src/pacman/remove.c @@ -115,12 +115,6 @@ int pacman_remove(alpm_list_t *targets) pm_printf(ALPM_LOG_ERROR, _("failed to prepare transaction (%s)\n"), alpm_strerror(err)); switch(err) { - case ALPM_ERR_PKG_INVALID_ARCH: - for(i = data; i; i = alpm_list_next(i)) { - const char *pkg = i->data; - printf(_(":: package %s does not have a valid architecture\n"), pkg); - } - break; case ALPM_ERR_UNSATISFIED_DEPS: for(i = data; i; i = alpm_list_next(i)) { alpm_depmissing_t *miss = i->data; -- cgit v1.2.3