diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-12-24 22:32:25 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-12-24 22:32:25 +0000 |
commit | 113038fe9363123323fb3bcccbf6d2f86881427a (patch) | |
tree | 08c8c307c273230346f2d9d213e86a0b7a9f8e25 /sbin/dump | |
parent | 0c73efbb440e98e5f934a5b115486d1c760a903f (diff) |
Use correct printf formatting (dwmalone@maths.tcd.ie)
Diffstat (limited to 'sbin/dump')
-rw-r--r-- | sbin/dump/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/dump/main.c b/sbin/dump/main.c index 2c34226bc93..348a7a6a7fc 100644 --- a/sbin/dump/main.c +++ b/sbin/dump/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.26 1999/02/20 21:46:05 deraadt Exp $ */ +/* $OpenBSD: main.c,v 1.27 1999/12/24 22:32:24 angelos Exp $ */ /* $NetBSD: main.c,v 1.14 1997/06/05 11:13:24 lukem Exp $ */ /*- @@ -439,7 +439,7 @@ main(argc, argv) if (pipeout || unlimited) { tapesize += 10; /* 10 trailer blocks */ - msg("estimated %ld tape blocks.\n", tapesize); + msg("estimated %lq tape blocks.\n", tapesize); } else { double fetapes; |