diff options
author | Jason Peel <jsyn@cvs.openbsd.org> | 2002-06-11 06:16:37 +0000 |
---|---|---|
committer | Jason Peel <jsyn@cvs.openbsd.org> | 2002-06-11 06:16:37 +0000 |
commit | f1bb7fb5cfe9822f50143a03473f49e825e704bc (patch) | |
tree | b52183f48c7c26eefd4e775d5d3961c0966d3ccd /usr.bin/usbhidaction/usbhidaction.c | |
parent | ea445c9a491356bc5908d76271fddc05137a4a3c (diff) |
kill err(3) newlines; ok miod@, deraadt@
Diffstat (limited to 'usr.bin/usbhidaction/usbhidaction.c')
-rw-r--r-- | usr.bin/usbhidaction/usbhidaction.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/usbhidaction/usbhidaction.c b/usr.bin/usbhidaction/usbhidaction.c index 7b218f5e49f..e7783fc2055 100644 --- a/usr.bin/usbhidaction/usbhidaction.c +++ b/usr.bin/usbhidaction/usbhidaction.c @@ -1,4 +1,4 @@ -/* $OpenBSD: usbhidaction.c,v 1.1 2002/05/10 00:09:17 nate Exp $ */ +/* $OpenBSD: usbhidaction.c,v 1.2 2002/06/11 06:16:36 jsyn Exp $ */ /* $NetBSD: usbhidaction.c,v 1.7 2002/01/18 14:38:59 augustss Exp $ */ /* @@ -142,7 +142,7 @@ main(int argc, char **argv) reportid = -1; repd = hid_get_report_desc(fd); if (repd == NULL) - err(1, "hid_get_report_desc() failed\n"); + err(1, "hid_get_report_desc() failed"); commands = parse_conf(conf, repd, reportid, ignore); @@ -348,7 +348,7 @@ parse_conf(const char *conf, report_desc_t repd, int reportid, int ignore) } if (ignore) { if (verbose) - warnx("ignore item '%s'\n", name); + warnx("ignore item '%s'", name); continue; } if (isdemon) { |