diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2012-02-15 08:19:31 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2012-02-15 08:19:31 +0000 |
commit | ebecdbf8ab9ebeaea0304ec5bbb0eff3d60fb70c (patch) | |
tree | b7754519a1c34ddb71c0701ac5b529a9fe9c2bd0 /usr.bin/pkill | |
parent | 166c574701f3d35966e9d2b38352bcd28a1dff07 (diff) |
avoid usage() warping onto the next line;
Diffstat (limited to 'usr.bin/pkill')
-rw-r--r-- | usr.bin/pkill/pkill.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/pkill/pkill.c b/usr.bin/pkill/pkill.c index aace2e0ad48..2f742b57de9 100644 --- a/usr.bin/pkill/pkill.c +++ b/usr.bin/pkill/pkill.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pkill.c,v 1.21 2012/02/09 20:04:35 markus Exp $ */ +/* $OpenBSD: pkill.c,v 1.22 2012/02/15 08:19:30 jmc Exp $ */ /* $NetBSD: pkill.c,v 1.5 2002/10/27 11:49:34 kleink Exp $ */ /*- @@ -442,8 +442,8 @@ usage(void) else ustr = "[-signal] [-flnovx]"; - fprintf(stderr, "usage: %s %s [-G gid] [-g pgrp] [-P ppid] [-s sid] " - "[-T rtable]\n\t[-t tty] [-U uid] [-u euid] [pattern ...]\n", + fprintf(stderr, "usage: %s %s [-G gid] [-g pgrp] [-P ppid] [-s sid]" + "\n\t[-T rtable] [-t tty] [-U uid] [-u euid] [pattern ...]\n", __progname, ustr); exit(STATUS_ERROR); |