index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2011-06-15 09:10:33 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-06-15 09:11:47 -0500 |
commit | 6eee3f6781b62f3a80697fbc7e3eeac0544e49e8 (patch) | |
tree | fdbae6416e359eb6fb7d744517123fe62c5a59f8 /src | |
parent | 4664a095a497de1b47d980863228860a6d19f286 (diff) |
-rw-r--r-- | src/pacman/util.c | 2 |
diff --git a/src/pacman/util.c b/src/pacman/util.c index a6d150fc..f695ffba 100644 --- a/src/pacman/util.c +++ b/src/pacman/util.c @@ -456,7 +456,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 */ |