vtfontcvt: correct usage

Commit e7fd9688ea changed vtfontcvt's command line parsing, but did
not correctly update the usage (it omitted the new -o flag).

Fixes:		e7fd9688ea ("Move font related data structured to...")
MFC after:	1 week
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Ed Maste 2022-07-18 13:21:22 -04:00
parent 939f0b6323
commit df777aeb98

View File

@ -180,8 +180,8 @@ usage(void)
{
(void)fprintf(stderr, "usage: vtfontcvt "
"[-n] [-f font|source|compressed-source] [-w width] "
"[-h height]\n\t[-v] normal.bdf [bold.bdf] out.fnt\n");
"[-n] [-f font|source|compressed-source] [-w width] [-h height]\n"
"\t[-v] -o output_file normal.bdf [bold.bdf]\n");
exit(1);
}