diff options
Diffstat (limited to 'src/pacman/sync.c')
-rw-r--r-- | src/pacman/sync.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pacman/sync.c b/src/pacman/sync.c index 63e5766e..1e622d37 100644 --- a/src/pacman/sync.c +++ b/src/pacman/sync.c @@ -636,9 +636,8 @@ static int process_group(alpm_list_t *dbs, char *group) printf(_(":: There are %d members in group %s:\n"), count, group); select_display(pkgs); - select_question(count); char *array = malloc(count); - memset(array, 1, count); + multiselect_question(array, count); int n = 0; for(i = pkgs; i; i = alpm_list_next(i)) { if(array[n++] == 0) |