summaryrefslogtreecommitdiffstats
path: root/caesar
diff options
context:
space:
mode:
authorrillig <rillig@NetBSD.org>2005-07-22 11:56:50 +0000
committerrillig <rillig@NetBSD.org>2005-07-22 11:56:50 +0000
commit4662dc9e8b9b8aec7bdb688c029c3a9895643f52 (patch)
tree25ed6d70541ae2b64b88aa7e5ddbf4ff5a5dff76 /caesar
parent07b1db98b0b1e2e036c4d601394e591ed2adf279 (diff)
downloadbsdgames-darwin-4662dc9e8b9b8aec7bdb688c029c3a9895643f52.tar.gz
bsdgames-darwin-4662dc9e8b9b8aec7bdb688c029c3a9895643f52.tar.zst
bsdgames-darwin-4662dc9e8b9b8aec7bdb688c029c3a9895643f52.zip
Aligned the usage message from the program with the one mentioned in the
man page.
Diffstat (limited to 'caesar')
-rw-r--r--caesar/caesar.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/caesar/caesar.c b/caesar/caesar.c
index 3738b77c..699a7adc 100644
--- a/caesar/caesar.c
+++ b/caesar/caesar.c
@@ -1,4 +1,4 @@
-/* $NetBSD: caesar.c,v 1.16 2005/07/22 11:52:23 rillig Exp $ */
+/* $NetBSD: caesar.c,v 1.17 2005/07/22 11:56:50 rillig Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -48,7 +48,7 @@ __COPYRIGHT("@(#) Copyright (c) 1989, 1993\n\
#if 0
static char sccsid[] = "@(#)caesar.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: caesar.c,v 1.16 2005/07/22 11:52:23 rillig Exp $");
+__RCSID("$NetBSD: caesar.c,v 1.17 2005/07/22 11:56:50 rillig Exp $");
#endif
#endif /* not lint */
@@ -196,7 +196,7 @@ main(int argc, char **argv)
init_rottbl(get_rotation(argv[1]));
print_file();
} else {
- (void)fprintf(stderr, "usage: caesar [rot]\n");
+ (void)fprintf(stderr, "usage: caesar [rotation]\n");
exit(EXIT_FAILURE);
/* NOTREACHED */
}