diff options
author | des <des@FreeBSD.org> | 2002-04-22 13:44:47 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2002-04-22 13:44:47 +0000 |
commit | 4d6b787d2daa6eb05c0f3526d65b0b92b1afa715 (patch) | |
tree | bf1d5b964f5e7e91c796086166af5a86d7d454a0 /usr.bin/objformat | |
parent | 5cd51ad03ace6eb47f39604929482ae558d66aad (diff) | |
download | FreeBSD-src-4d6b787d2daa6eb05c0f3526d65b0b92b1afa715.zip FreeBSD-src-4d6b787d2daa6eb05c0f3526d65b0b92b1afa715.tar.gz |
Usage style sweep: spell "usage" with a small 'u'.
Also change one case of blatant __progname abuse (several more remain)
This commit does not touch anything in src/{contrib,crypto,gnu}/.
Diffstat (limited to 'usr.bin/objformat')
-rw-r--r-- | usr.bin/objformat/objformat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/objformat/objformat.c b/usr.bin/objformat/objformat.c index 3e9e410..1b3e35d 100644 --- a/usr.bin/objformat/objformat.c +++ b/usr.bin/objformat/objformat.c @@ -52,7 +52,7 @@ main(int argc, char **argv) if (strcmp(cmd, "objformat") == 0) { if (argc != 1) { - fprintf(stderr, "Usage: objformat\n"); + fprintf(stderr, "usage: objformat\n"); exit(1); } printf("%s\n", objformat); |