diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-20 19:14:38 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-20 19:14:38 +0000 |
commit | 882324330380c38cd89b77cf95af8684906ea1aa (patch) | |
tree | fe26935ee4e4bfb89207ed89188db6822685c474 /usr.bin/sort/sort.c | |
parent | b685bed55a50c94a3826de6477913354f0808793 (diff) |
consolidate printfs
Diffstat (limited to 'usr.bin/sort/sort.c')
-rw-r--r-- | usr.bin/sort/sort.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/sort/sort.c b/usr.bin/sort/sort.c index 5009daea2ff..6882b70035b 100644 --- a/usr.bin/sort/sort.c +++ b/usr.bin/sort/sort.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sort.c,v 1.6 1997/06/30 05:36:18 millert Exp $ */ +/* $OpenBSD: sort.c,v 1.7 1998/07/20 19:14:37 mickey Exp $ */ /*- * Copyright (c) 1993 @@ -46,7 +46,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)sort.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: sort.c,v 1.6 1997/06/30 05:36:18 millert Exp $"; +static char rcsid[] = "$OpenBSD: sort.c,v 1.7 1998/07/20 19:14:37 mickey Exp $"; #endif #endif /* not lint */ @@ -310,7 +310,7 @@ usage(msg) if (msg) (void)fprintf(stderr, "sort: %s\n", msg); - (void)fprintf(stderr, "usage: [-T dir] [-o output] [-cmubdfinr] "); - (void)fprintf(stderr, "[-t char] [-R char] [-k keydef] ... [files]\n"); + (void)fprintf(stderr, "usage: [-T dir] [-o output] [-cmubdfinr] " + "[-t char] [-R char] [-k keydef] ... [files]\n"); exit(2); } |