diff options
author | alfred <alfred@FreeBSD.org> | 2002-07-14 18:23:22 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-07-14 18:23:22 +0000 |
commit | c288b01e7dc244369bfc3e9378588bc005deca52 (patch) | |
tree | 826dbfc96c991b197cc2c88576fe83ac45542b9f /usr.bin/apply | |
parent | adf0fb9f4e0176992d643bfe8da94a2d54f48ec0 (diff) | |
download | FreeBSD-src-c288b01e7dc244369bfc3e9378588bc005deca52.zip FreeBSD-src-c288b01e7dc244369bfc3e9378588bc005deca52.tar.gz |
WARNS=4
Diffstat (limited to 'usr.bin/apply')
-rw-r--r-- | usr.bin/apply/Makefile | 1 | ||||
-rw-r--r-- | usr.bin/apply/apply.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/apply/Makefile b/usr.bin/apply/Makefile index ca0f10a..0355588 100644 --- a/usr.bin/apply/Makefile +++ b/usr.bin/apply/Makefile @@ -2,5 +2,6 @@ # $FreeBSD$ PROG= apply +WARNS?= 4 .include <bsd.prog.mk> diff --git a/usr.bin/apply/apply.c b/usr.bin/apply/apply.c index e2f808a..25ba374 100644 --- a/usr.bin/apply/apply.c +++ b/usr.bin/apply/apply.c @@ -258,7 +258,7 @@ exec_shell(const char *command, char *use_shell, char *use_name) } void -usage() +usage(void) { (void)fprintf(stderr, |