Cosmetic in usage string.

This commit is contained in:
Philippe Charnier 1997-07-15 09:57:28 +00:00
parent 00bbaadcfd
commit 21a3d1655c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=27422

View File

@ -36,13 +36,17 @@
*/
#ifndef lint
static char copyright[] =
static const char copyright[] =
"@(#) Copyright (c) 1991, 1993, 1994\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
#if 0
static char sccsid[] = "@(#)join.c 8.6 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
"$Id$";
#endif /* not lint */
#include <sys/param.h>
@ -581,8 +585,9 @@ jbad: errx(1, "illegal option -- %s", ap);
void
usage()
{
(void)fprintf(stderr, "%s%s\n",
"usage: join [-a fileno | -v fileno ] [-e string] [-1 field] ",
"[-2 field]\n [-o list] [-t char] file1 file2");
(void)fprintf(stderr, "%s %s\n%s\n",
"usage: join [-a fileno | -v fileno ] [-e string] [-1 field]",
"[-2 field]",
" [-o list] [-t char] file1 file2");
exit(1);
}