- Make find(1) WARNS?= 6 clean

- Bump to WARNS?= 6

Approved by:	stefanf, grehan (mentor)
This commit is contained in:
Suleiman Souhlal 2005-01-25 14:07:25 +00:00
parent a18a49dcba
commit 46c2bd6103
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=140810
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
PROG= find
SRCS= find.c function.c ls.c main.c misc.c operator.c option.c \
getdate.y
WARNS?=2
WARNS?=6
CFLAGS+= -DHAVE_SYS_TIMEB_H -I${.CURDIR}
YFLAGS=

View File

@ -360,7 +360,7 @@ c_mXXdepth(OPTION *option, char ***argvp)
* Show files with EXTENDED ACL attributes.
*/
int
f_acl(PLAN *plan__unused, FTSENT *entry)
f_acl(PLAN *plan __unused, FTSENT *entry)
{
int match, entries;
acl_entry_t ae;
@ -397,7 +397,7 @@ f_acl(PLAN *plan__unused, FTSENT *entry)
}
PLAN *
c_acl(OPTION *option, char ***argvp__unused)
c_acl(OPTION *option, char ***argvp __unused)
{
ftsoptions &= ~FTS_NOSTAT;
return (palloc(option));