Fix the usage() to match style(9).

This commit is contained in:
Ruslan Ermilov 2002-08-14 11:28:07 +00:00
parent d3ee5eafe5
commit 67cb90ecd7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=101862

View File

@ -145,9 +145,10 @@ main(argc, argv)
void
usage()
{
(void)fprintf(stderr,
"usage: calendar [-a] [-A days] [-W days] [-F friday] [-B days]\n"
"\t[-f calendarfile] [-t dd[.mm[.year]]]\n");
(void)fprintf(stderr, "%s\n%s\n",
"usage: calendar [-a] [-A days] [-B days] [-F friday] "
"[-f calendarfile]",
" [-t dd[.mm[.year]]] [-W days]");
exit(1);
}