diff options
author | tjr <tjr@FreeBSD.org> | 2003-08-17 10:33:54 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2003-08-17 10:33:54 +0000 |
commit | d21c6d5071dfec3042de4b42f1f7754eeb80247b (patch) | |
tree | 88800982e0120de1b7bd18b02f7df5e41b75cce6 /usr.bin/getconf | |
parent | 050704951f217d90e57850dba060b671b02a551e (diff) | |
download | FreeBSD-src-d21c6d5071dfec3042de4b42f1f7754eeb80247b.zip FreeBSD-src-d21c6d5071dfec3042de4b42f1f7754eeb80247b.tar.gz |
Tidy up usage message.
Diffstat (limited to 'usr.bin/getconf')
-rw-r--r-- | usr.bin/getconf/getconf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/getconf/getconf.c b/usr.bin/getconf/getconf.c index 14345c6..61c1853 100644 --- a/usr.bin/getconf/getconf.c +++ b/usr.bin/getconf/getconf.c @@ -48,9 +48,9 @@ static void do_pathconf(const char *name, int key, const char *path); static void usage(void) { - fprintf(stderr, "usage:\n" - "\tgetconf [-v prog_env] system_var\n" - "\tgetconf [-v prog_env] path_var pathname\n"); + fprintf(stderr, +"usage: getconf [-v prog_env] system_var\n" +" getconf [-v prog_env] path_var pathname\n"); exit(EX_USAGE); } |