diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-01-04 02:53:50 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-01-04 02:53:50 +0000 |
commit | b60f395d73e9e933635aeb2d6a9b7b97dd3ecd3e (patch) | |
tree | f72edcfa8458abc6b1a2bf9f7b4cdabe144fc802 /sbin/dump/main.c | |
parent | 88f8f0b8e121df42cab8e6454ce9ebf023ede90e (diff) |
Fix format string typo when printing estimated number of blocks;
naddy@unix-ag.uni-kl.de
Diffstat (limited to 'sbin/dump/main.c')
-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 348a7a6a7fc..e0c6c396249 100644 --- a/sbin/dump/main.c +++ b/sbin/dump/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.27 1999/12/24 22:32:24 angelos Exp $ */ +/* $OpenBSD: main.c,v 1.28 2000/01/04 02:53:49 millert 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 %lq tape blocks.\n", tapesize); + msg("estimated %qd tape blocks.\n", tapesize); } else { double fetapes; |