diff options
author | Aaron Griffin <aaron@archlinux.org> | 2007-02-22 05:46:34 +0100 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2007-02-22 05:46:34 +0100 |
commit | 37a3f26d2aa61474d0e7d9117a70dc5facc28883 (patch) | |
tree | 6ddea69c43ed99804a90293913b327eb3f2c8444 /src | |
parent | 871e123cf3fafe5aff734e2c5cf1ce89a203f719 (diff) | |
download | pacman-37a3f26d2aa61474d0e7d9117a70dc5facc28883.tar.gz pacman-37a3f26d2aa61474d0e7d9117a70dc5facc28883.tar.xz |
* Forgot the second printf in the last commit
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/trans.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/trans.c b/src/pacman/trans.c index f88ca710..b5581d75 100644 --- a/src/pacman/trans.c +++ b/src/pacman/trans.c @@ -352,7 +352,7 @@ void cb_trans_progress(pmtransprog_t event, char *pkgname, const int percent, opr, pkglen, pkgname); break; case PM_TRANS_PROGRESS_CONFLICTS_START: - printf("(%*d/%*d) %-*s", digits, remain, digits, howmany, + printf("(%2$*1$d/%3$*1$d) %5$-*4$s", digits, remain, howmany, textlen, opr); break; } |