Tidy up usage message.

This commit is contained in:
Tim J. Robbins 2003-08-17 10:33:54 +00:00
parent a3092ad9c2
commit 7007f3d660
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=119025
2 changed files with 6 additions and 6 deletions

View File

@ -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);
}

View File

@ -403,8 +403,8 @@ static void
usage()
{
(void)fprintf(stderr, "usage: nl [-p] [-b type] [-d delim] [-f type] \
[-h type] [-i incr] [-l num]\n\t[-n format] [-s sep] [-v startnum] [-w width] \
[file]\n");
(void)fprintf(stderr,
"usage: nl [-p] [-b type] [-d delim] [-f type] [-h type] [-i incr] [-l num]\n"
" [-n format] [-s sep] [-v startnum] [-w width] [file]\n");
exit(EXIT_FAILURE);
}