diff --git a/src/pacman/util.c b/src/pacman/util.c index 1806ee5..09278e5 100644 --- a/src/pacman/util.c +++ b/src/pacman/util.c @@ -449,7 +449,7 @@ void display_targets(const alpm_list_t *syncpkgs, pmdb_t *db_local) printf("\n"); if(to_remove) { - list_display(_("Remove:"), to_remove); + list_display(_("Remove (%d):"), alpm_list_count(to_remove), to_remove); printf("\n"); FREELIST(to_remove); @@ -457,7 +457,7 @@ void display_targets(const alpm_list_t *syncpkgs, pmdb_t *db_local) printf("\n"); } - list_display(_("Targets:"), targets); + list_display(_("Targets (%d):"), alpm_list_count(targets), targets); printf("\n"); printf(_("Total Download Size: %.2f MB\n"), mbdlsize);