diff options
Diffstat (limited to 'usr.bin/join/join.c')
-rw-r--r-- | usr.bin/join/join.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/usr.bin/join/join.c b/usr.bin/join/join.c index 5e45850..097ecbe 100644 --- a/usr.bin/join/join.c +++ b/usr.bin/join/join.c @@ -661,10 +661,9 @@ jbad: errx(1, "illegal option -- %s", ap); void usage(void) { - (void)fprintf(stderr, "%s %s\n%s %s\n", - "usage: join [-a fileno | -v fileno ]", - "[-e string] [-j fileno field]", - " [-1 field] [-2 field]", - "[-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); } |