From: Jan-Simon Pendry Date: Tue, 7 Feb 1995 20:49:36 +0000 (-0800) Subject: add missing \n to usage message X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/45b3d3fb6eede03a484911f87dc27b5bb7a9f515 add missing \n to usage message SCCS-vsn: usr.bin/ctags/ctags.c 8.4 --- diff --git a/usr/src/usr.bin/ctags/ctags.c b/usr/src/usr.bin/ctags/ctags.c index 2768d7c32d..6cf5a9e545 100644 --- a/usr/src/usr.bin/ctags/ctags.c +++ b/usr/src/usr.bin/ctags/ctags.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 1987, 1993, 1994 + * Copyright (c) 1987, 1993, 1994, 1995 * The Regents of the University of California. All rights reserved. * * %sccs.include.redist.c% @@ -7,12 +7,12 @@ #ifndef lint static char copyright[] = -"@(#) Copyright (c) 1987, 1993, 1994\n\ +"@(#) Copyright (c) 1987, 1993, 1994, 1995\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint -static char sccsid[] = "@(#)ctags.c 8.3 (Berkeley) %G%"; +static char sccsid[] = "@(#)ctags.c 8.4 (Berkeley) %G%"; #endif /* not lint */ #include @@ -105,7 +105,7 @@ main(argc, argv) argc -= optind; if (!argc) { usage: (void)fprintf(stderr, - "usage: ctags [-BFadtuwvx] [-f tagsfile] file ..."); + "usage: ctags [-BFadtuwvx] [-f tagsfile] file ...\n"); exit(1); }