Sync usage() and SYNOPSIS.

This commit is contained in:
Ruslan Ermilov 2006-09-29 16:46:01 +00:00
parent 6a7c943c59
commit d20241a618
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=162799
2 changed files with 6 additions and 2 deletions

View File

@ -37,7 +37,7 @@
.Nm
.Op Fl rv
.Nm
.Op Fl u
.Fl u
.Sh DESCRIPTION
The
.Nm

View File

@ -35,6 +35,7 @@ __FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <err.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "devinfo.h"
@ -208,7 +209,10 @@ main(int argc, char *argv[])
vflag++;
break;
default:
errx(1, "usage: %s [-ruv]", argv[0]);
fprintf(stderr, "%s\n%s\n",
"usage: devinfo [-rv]",
" devinfo -u");
exit(1);
}
}