diff options
author | jkh <jkh@FreeBSD.org> | 1996-07-09 16:57:14 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-07-09 16:57:14 +0000 |
commit | e649a4ef86e959e51e43e2f50d19a6eff8d7cf43 (patch) | |
tree | 3f86e21042c405d1c4db90d5cb9550acfcabd894 /release | |
parent | c3e53b95128704d74a184f9fe12f7683a54232a8 (diff) | |
download | FreeBSD-src-e649a4ef86e959e51e43e2f50d19a6eff8d7cf43.zip FreeBSD-src-e649a4ef86e959e51e43e2f50d19a6eff8d7cf43.tar.gz |
Try to prevent the status line from jumping around quite so much.
Diffstat (limited to 'release')
-rw-r--r-- | release/sysinstall/dist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/release/sysinstall/dist.c b/release/sysinstall/dist.c index ff2ad41..0ecdbd0 100644 --- a/release/sysinstall/dist.c +++ b/release/sysinstall/dist.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: dist.c,v 1.62 1996/07/09 14:28:12 jkh Exp $ + * $Id: dist.c,v 1.63 1996/07/09 16:28:59 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -461,7 +461,7 @@ distExtract(char *parent, Distribution *me) seconds = stop.tv_sec + (stop.tv_usec / 1000000.0); if (!seconds) seconds = 1; - msgInfo("%d bytes read from %s dist, chunk %d of %d @ %4.1f KB/sec.", + msgInfo("%d bytes read from %s dist, chunk %d of %d @ %-4.1f KB/sec.", total, dist, chunk + 1, numchunks, (chunktotal / seconds) / 1024.0); retval = write(fd2, buf, n); if (retval != n) { |