aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Traina <pst@FreeBSD.org>1997-01-07 20:15:04 +0000
committerPaul Traina <pst@FreeBSD.org>1997-01-07 20:15:04 +0000
commit71fbc63c697a2825ded7bbba80cae1b31b7c475a (patch)
treeb2379a818628c3ad290406c7e3b308db00d3390a
parente1fb4daa3e55e46cee7c84101b8a0bea8b9c09ff (diff)
Notes
-rw-r--r--sbin/dump/main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/dump/main.c b/sbin/dump/main.c
index 408043a20a76..481fecb3d6bd 100644
--- a/sbin/dump/main.c
+++ b/sbin/dump/main.c
@@ -368,11 +368,11 @@ main(argc, argv)
Assume no erroneous blocks; this can be compensated
for with an artificially low tape size. */
fetapes =
- ( tapesize /* blocks */
+ ( (double) tapesize /* blocks */
* TP_BSIZE /* bytes/block */
* (1.0/density) /* 0.1" / byte " */
+
- tapesize /* blocks */
+ (double) tapesize /* blocks */
* (1.0/ntrec) /* streaming-stops per block */
* 15.48 /* 0.1" / streaming-stop " */
) * (1.0 / tsize ); /* tape / 0.1" " */
@@ -381,11 +381,11 @@ main(argc, argv)
tape */
int tenthsperirg = (density == 625) ? 3 : 7;
fetapes =
- ( tapesize /* blocks */
+ ( (double) tapesize /* blocks */
* TP_BSIZE /* bytes / block */
* (1.0/density) /* 0.1" / byte " */
+
- tapesize /* blocks */
+ (double) tapesize /* blocks */
* (1.0/ntrec) /* IRG's / block */
* tenthsperirg /* 0.1" / IRG " */
) * (1.0 / tsize ); /* tape / 0.1" " */