diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:50:53 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:50:53 +0000 |
commit | f1148902de0b269467d445554f5d860513e39871 (patch) | |
tree | 68f4cc81f6cbd73c39c732d838e1f4a9a6dabebb /apt-pkg | |
parent | 404ec98e5186c844003dee15e15bc96460cc27a5 (diff) |
Fixed some display glitches
Author: jgg
Date: 1998-07-22 01:45:38 GMT
Fixed some display glitches
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/contrib/progress.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/contrib/progress.cc b/apt-pkg/contrib/progress.cc index 18dffc83e..8d49eff2e 100644 --- a/apt-pkg/contrib/progress.cc +++ b/apt-pkg/contrib/progress.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: progress.cc,v 1.1 1998/07/21 05:33:21 jgg Exp $ +// $Id: progress.cc,v 1.2 1998/07/22 01:45:38 jgg Exp $ /* ###################################################################### OpProgress - Operation Progress @@ -97,7 +97,7 @@ void OpTextProgress::Done() if (NoUpdate == false && OldOp.empty() == false) { char S[300]; - snprintf(S,sizeof(S),"\r%s",OldOp.c_str()); + snprintf(S,sizeof(S),"\r%s... Done",OldOp.c_str()); Write(S); cout << endl; OldOp = string(); |