diff options
author | Dan McGee <dan@archlinux.org> | 2011-09-28 17:26:48 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-09-28 17:26:53 +0200 |
commit | a8ed39ce05b68f5c9f0e29d86bf9bb0ac81b0ffd (patch) | |
tree | d45ef55839076638e3bca97376335a81622607af | |
parent | 6f3a657f66b9c766b5fa6c51c26283d3547f5169 (diff) | |
download | pacman-a8ed39ce05b68f5c9f0e29d86bf9bb0ac81b0ffd.tar.gz pacman-a8ed39ce05b68f5c9f0e29d86bf9bb0ac81b0ffd.tar.xz |
verbose package lists: remove errant debugger
Left this in as part of the last set of commits, whoops.
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | src/pacman/util.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/pacman/util.c b/src/pacman/util.c index fc4194a1..748c0e91 100644 --- a/src/pacman/util.c +++ b/src/pacman/util.c @@ -531,8 +531,6 @@ static alpm_list_t *table_create_format(const alpm_list_t *header, size_t str_len = string_length(str); if(str_len > colwidths[curcol]) { - fprintf(stderr, "replace width: %zd (%zd -> %zd) %s\n", - curcol, colwidths[curcol], str_len, str); colwidths[curcol] = str_len; } } |