diff options
author | Ed Schouten <ed@FreeBSD.org> | 2010-01-02 10:09:20 +0000 |
---|---|---|
committer | Ed Schouten <ed@FreeBSD.org> | 2010-01-02 10:09:20 +0000 |
commit | ef636796f6443dbb7214182450240bba4ddd515f (patch) | |
tree | a138378761890dfbbb922442dc23d824a9740d2d /usr.bin/renice/renice.c | |
parent | daaf5759104f210a9315f49f80f1e0f01a8b3bff (diff) | |
download | src-ef636796f6443dbb7214182450240bba4ddd515f.tar.gz src-ef636796f6443dbb7214182450240bba4ddd515f.zip |
ANSIfy various tools in usr.bin/.
Most of these tools properly build at WARNS=6, except for their K&R
function declarations. Fix this, so we can bump WARNS as well.
Notes
Notes:
svn path=/head/; revision=201382
Diffstat (limited to 'usr.bin/renice/renice.c')
-rw-r--r-- | usr.bin/renice/renice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/renice/renice.c b/usr.bin/renice/renice.c index 21bb4c2c9805..55f6537208a5 100644 --- a/usr.bin/renice/renice.c +++ b/usr.bin/renice/renice.c @@ -177,7 +177,7 @@ getnum(const char *com, const char *str, int *val) } static void -usage() +usage(void) { fprintf(stderr, "%s\n%s\n", "usage: renice priority [[-p] pid ...] [[-g] pgrp ...] [[-u] user ...]", |