diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-06-21 07:35:16 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-06-21 07:35:16 +0000 |
commit | 7e29b230bf5480eb07925cbea7a44fb40e4b49b2 (patch) | |
tree | 0de54c501579ecb1762dccf939257596ab203a48 /usr.bin/locate | |
parent | 2e6593ffc650b318fa58ad6f1f02bb806435f246 (diff) |
\n\n is ugly
Diffstat (limited to 'usr.bin/locate')
-rw-r--r-- | usr.bin/locate/locate/locate.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/locate/locate/locate.c b/usr.bin/locate/locate/locate.c index 890448008b6..d559784f77e 100644 --- a/usr.bin/locate/locate/locate.c +++ b/usr.bin/locate/locate/locate.c @@ -1,5 +1,5 @@ /* - * $OpenBSD: locate.c,v 1.7 1997/01/15 23:42:44 millert Exp $ + * $OpenBSD: locate.c,v 1.8 1997/06/21 07:35:15 deraadt Exp $ * * Copyright (c) 1995 Wolfram Schneider <wosch@FreeBSD.org>. Berlin. * Copyright (c) 1989, 1993 @@ -36,7 +36,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: locate.c,v 1.7 1997/01/15 23:42:44 millert Exp $ + * $Id: locate.c,v 1.8 1997/06/21 07:35:15 deraadt Exp $ */ #ifndef lint @@ -50,7 +50,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)locate.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: locate.c,v 1.7 1997/01/15 23:42:44 millert Exp $"; +static char rcsid[] = "$OpenBSD: locate.c,v 1.8 1997/06/21 07:35:15 deraadt Exp $"; #endif #endif /* not lint */ @@ -347,7 +347,7 @@ void usage () { (void)fprintf(stderr, "usage: locate [-Scims] [-l limit] "); - (void)fprintf(stderr, "[-d database] pattern ...\n\n"); + (void)fprintf(stderr, "[-d database] pattern ...\n"); (void)fprintf(stderr, "default database: `%s' or $LOCATE_PATH\n", _PATH_FCODES); exit(1); |