diff options
author | 2002-03-14 06:51:41 +0000 | |
---|---|---|
committer | 2002-03-14 06:51:41 +0000 | |
commit | 46347781a5e6cfbee8d0b55754cca7263af44d38 (patch) | |
tree | cd69bc92d20e3feea945a88fb926a9faeedfdc42 /usr.bin/file/apprentice.c | |
parent | this mod has nothing to do w/ ptrace option addition, did not even compile (diff) | |
download | wireguard-openbsd-46347781a5e6cfbee8d0b55754cca7263af44d38.tar.xz wireguard-openbsd-46347781a5e6cfbee8d0b55754cca7263af44d38.zip |
Remove \n from err/errx/warn/warnx().
millert@ ok
Diffstat (limited to 'usr.bin/file/apprentice.c')
-rw-r--r-- | usr.bin/file/apprentice.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/file/apprentice.c b/usr.bin/file/apprentice.c index c6bc2814c6a..e484243bec1 100644 --- a/usr.bin/file/apprentice.c +++ b/usr.bin/file/apprentice.c @@ -1,4 +1,4 @@ -/* $OpenBSD: apprentice.c,v 1.12 2002/02/16 21:27:46 millert Exp $ */ +/* $OpenBSD: apprentice.c,v 1.13 2002/03/14 06:51:41 mpech Exp $ */ /* * apprentice - make one pass through /etc/magic, learning its secrets. @@ -36,7 +36,7 @@ #include "file.h" #ifndef lint -static char *moduleid = "$OpenBSD: apprentice.c,v 1.12 2002/02/16 21:27:46 millert Exp $"; +static char *moduleid = "$OpenBSD: apprentice.c,v 1.13 2002/03/14 06:51:41 mpech Exp $"; #endif /* lint */ #define EATAB {while (isascii((unsigned char) *l) && \ @@ -164,7 +164,7 @@ uint32 v; case STRING: break; default: - warnx("can't happen: m->type=%d\n", m->type); + warnx("can't happen: m->type=%d", m->type); return -1; } return v; |