summaryrefslogtreecommitdiff
path: root/sbin/dump
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>1999-12-24 22:32:25 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>1999-12-24 22:32:25 +0000
commit113038fe9363123323fb3bcccbf6d2f86881427a (patch)
tree08c8c307c273230346f2d9d213e86a0b7a9f8e25 /sbin/dump
parent0c73efbb440e98e5f934a5b115486d1c760a903f (diff)
Use correct printf formatting (dwmalone@maths.tcd.ie)
Diffstat (limited to 'sbin/dump')
-rw-r--r--sbin/dump/main.c4
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;