diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2008-01-11 07:04:23 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2008-01-11 07:04:23 +0000 |
commit | 0c9618aa35dac9276a2d8a7fec52c2abb0a09b25 (patch) | |
tree | 3f58716996a83a97fd858d18aaf3d0aba0b1f9ef /sbin | |
parent | bf289b023b0db0c30638590d196f9f1772b5b5a9 (diff) |
compute transfer rate using 64-bit arithmetic, ok sthen@ millert@
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/dump/tape.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sbin/dump/tape.c b/sbin/dump/tape.c index 4ba27079678..91f47227172 100644 --- a/sbin/dump/tape.c +++ b/sbin/dump/tape.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tape.c,v 1.29 2007/06/03 20:16:08 millert Exp $ */ +/* $OpenBSD: tape.c,v 1.30 2008/01/11 07:04:22 otto Exp $ */ /* $NetBSD: tape.c,v 1.11 1997/06/05 11:13:26 lukem Exp $ */ /*- @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)tape.c 8.2 (Berkeley) 3/17/94"; #else -static const char rcsid[] = "$OpenBSD: tape.c,v 1.29 2007/06/03 20:16:08 millert Exp $"; +static const char rcsid[] = "$OpenBSD: tape.c,v 1.30 2008/01/11 07:04:22 otto Exp $"; #endif #endif /* not lint */ @@ -232,7 +232,7 @@ time_t do_stats(void) { time_t tnow, ttaken; - int blocks; + int64_t blocks; (void)time(&tnow); ttaken = tnow - tstart_volume; @@ -241,9 +241,9 @@ do_stats(void) if (ttaken > 0) { msg("Volume %d took %d:%02d:%02d\n", tapeno, ttaken / 3600, (ttaken % 3600) / 60, ttaken % 60); - msg("Volume %d transfer rate: %d KB/s\n", tapeno, - blocks / ttaken); - xferrate += blocks / ttaken; + blocks /= ttaken; + msg("Volume %d transfer rate: %lld KB/s\n", tapeno, blocks); + xferrate += blocks; } return(tnow); } |