aboutsummaryrefslogtreecommitdiff
path: root/tests/sys/file
diff options
context:
space:
mode:
authorEnji Cooper <ngie@FreeBSD.org>2017-05-28 08:57:08 +0000
committerEnji Cooper <ngie@FreeBSD.org>2017-05-28 08:57:08 +0000
commit7deab5004cac54679cd057631834225319af8cfe (patch)
treec6eaff1b02283820e62317a765eca9185cece18e /tests/sys/file
parent25bd867ef1b8c2fe3c769b21edadc36774452ca4 (diff)
downloadsrc-7deab5004cac54679cd057631834225319af8cfe.tar.gz
src-7deab5004cac54679cd057631834225319af8cfe.zip
Use main(void) instead of main(argc __unused, argv __unused)
MFC after: 3 days Sponsored by: Dell EMC Isilon
Notes
Notes: svn path=/head/; revision=319060
Diffstat (limited to 'tests/sys/file')
-rw-r--r--tests/sys/file/newfileops_on_fork_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sys/file/newfileops_on_fork_test.c b/tests/sys/file/newfileops_on_fork_test.c
index bdf017172bdc..8262644adfa7 100644
--- a/tests/sys/file/newfileops_on_fork_test.c
+++ b/tests/sys/file/newfileops_on_fork_test.c
@@ -96,7 +96,7 @@ do_fork(void)
}
int
-main(__unused int argc, __unused char *argv[])
+main(void)
{
struct sockaddr_in sin;
pthread_t accept_thread;