summaryrefslogtreecommitdiff
path: root/sbin/dump
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-01 01:20:40 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-01 01:20:40 +0000
commitdf6dc7eaaca1872280e082328b1898684ca5ae9f (patch)
tree32bc1ba713031d11f7ca1b81412071e9b0bf91ce /sbin/dump
parent29d1c579fd4df8ffea91a9d829dafd05760d3499 (diff)
correct typo pointed out by chuck (in the prettiest way possible
Diffstat (limited to 'sbin/dump')
-rw-r--r--sbin/dump/main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/dump/main.c b/sbin/dump/main.c
index 42d21cceda4..870231c8bba 100644
--- a/sbin/dump/main.c
+++ b/sbin/dump/main.c
@@ -434,8 +434,9 @@ main(argc, argv)
if (pipeout)
msg("DUMP: %ld tape blocks\n",spcl.c_tapea);
else
- msg("DUMP: %ld tape blocks on %d volumes(s)\n",
- spcl.c_tapea, spcl.c_volume);
+ msg("DUMP: %ld tape blocks on %d volume%s\n",
+ spcl.c_tapea, spcl.c_volume,
+ spcl.c_volume > 1 ? "s" : "");
putdumptime();
trewind();
broadcast("DUMP IS DONE!\7\7\n");