Output "Packages" instead of "Targets"

Prefix the list of packages being installed/removed with "Packages"
instead of "Targets" as they are package names by this stage.

Fixes FS#23123.

Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Allan McRae 2012-04-29 13:23:23 +10:00 committed by Dan McGee
parent 8c7202ca19
commit 2e6cb69bf6
1 changed files with 1 additions and 1 deletions

View File

@ -910,7 +910,7 @@ static void _display_targets(alpm_list_t *targets, int verbose)
}
/* print to screen */
pm_asprintf(&str, _("Targets (%d):"), alpm_list_count(targets));
pm_asprintf(&str, _("Packages (%d):"), alpm_list_count(targets));
printf("\n");
cols = getcols(fileno(stdout));