diff options
author | Thomas Nordin <nordin@cvs.openbsd.org> | 2002-06-11 05:58:28 +0000 |
---|---|---|
committer | Thomas Nordin <nordin@cvs.openbsd.org> | 2002-06-11 05:58:28 +0000 |
commit | 48b4e0ec8cdffa081ec73a39d1662a7227a591aa (patch) | |
tree | 36b2be259dd18906a42024f564fd722dc1cff89c /usr.bin/fgen | |
parent | 144c0e42a97409307b390c74305676362a592e79 (diff) |
Remove \n from warnx(3). ok deraadt@
Diffstat (limited to 'usr.bin/fgen')
-rw-r--r-- | usr.bin/fgen/fgen.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/fgen/fgen.l b/usr.bin/fgen/fgen.l index f8a7d4f36aa..afa6b411d85 100644 --- a/usr.bin/fgen/fgen.l +++ b/usr.bin/fgen/fgen.l @@ -1,5 +1,5 @@ %{ -/* $OpenBSD: fgen.l,v 1.2 2002/02/16 21:27:45 millert Exp $ */ +/* $OpenBSD: fgen.l,v 1.3 2002/06/11 05:58:27 nordin Exp $ */ /* $NetBSD: fgen.l,v 1.12 2001/06/13 10:46:05 wiz Exp $ */ /* FLEX input for FORTH input file scanner */ /* @@ -974,7 +974,7 @@ main(argc, argv) break; case '?': default: - warnx("Illegal argument: %c\n", ch); + warnx("Illegal argument: %c", ch); usage(myname); } argc -= optind; |