diff options
author | 1995-12-01 01:20:39 +0000 | |
---|---|---|
committer | 1995-12-01 01:20:39 +0000 | |
commit | 4a7a02b74aaed56c54f3d52ec03c6dc77403a962 (patch) | |
tree | a99209b7986e03e9c29f1300a8a7f28f82e8b1ca | |
parent | properly catch cases where buffers are on the kstack, from hannken@eis.cs.tu-bs.de (diff) | |
download | wireguard-openbsd-4a7a02b74aaed56c54f3d52ec03c6dc77403a962.tar.xz wireguard-openbsd-4a7a02b74aaed56c54f3d52ec03c6dc77403a962.zip |
correct typo pointed out by chuck (in the prettiest way possible
-rw-r--r-- | sbin/dump/main.c | 5 |
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"); |