Submitted by: John Capo

Bogus pstat usage message from pstat:
usage: pstat -Tfnstv [system] [-M core] [-N system]

[system] is not mentioned in the man page and I don't
see where it is used in the code either.
Added also a [] around the first options to show them as optional, ATS.
This commit is contained in:
Andreas Schulz 1994-12-28 00:47:03 +00:00
parent b4314abf31
commit 5c0ca64ca0

View File

@ -1073,6 +1073,6 @@ void
usage()
{
(void)fprintf(stderr,
"usage: pstat -Tfnstv [system] [-M core] [-N system]\n");
"usage: pstat [-Tfnstv] [-M core] [-N system]\n");
exit(1);
}