Make flags in usage() and SYNOPSYS more style(9)-ish.

Suggested by:	brian
MFC after:	3 days
This commit is contained in:
Maxim Konovalov 2010-08-30 07:29:27 +00:00
parent 5b41e64486
commit 1ece82b487
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=211990
2 changed files with 2 additions and 3 deletions

View File

@ -33,8 +33,7 @@
.Nd load a file into the kernel
.Sh SYNOPSIS
.Nm
.Op Fl v
.Op Fl q
.Op Fl qv
.Ar
.Sh DESCRIPTION
The

View File

@ -129,7 +129,7 @@ path_check(const char *kldname, int quiet)
static void
usage(void)
{
fprintf(stderr, "usage: kldload [-v] [-q] file ...\n");
fprintf(stderr, "usage: kldload [-qv] file ...\n");
exit(1);
}