index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | src/pacman/util.c | 2 |
diff --git a/src/pacman/util.c b/src/pacman/util.c index 2a7b3773..5d666e21 100644 --- a/src/pacman/util.c +++ b/src/pacman/util.c @@ -583,7 +583,7 @@ void list_display(const char *title, const alpm_list_t *list) const char *str = alpm_list_getdata(list); printf("%s", str); cols += string_length(str); - for(i = alpm_list_next(list), cols = len; i; i = alpm_list_next(i)) { + for(i = alpm_list_next(list); i; i = alpm_list_next(i)) { const char *str = alpm_list_getdata(i); int s = string_length(str); /* wrap only if we have enough usable column space */ |