svn commit: r319060 - head/tests/sys/file

Ngie Cooper ngie at FreeBSD.org
Sun May 28 08:57:09 UTC 2017


Author: ngie
Date: Sun May 28 08:57:08 2017
New Revision: 319060
URL: https://svnweb.freebsd.org/changeset/base/319060

Log:
  Use main(void) instead of main(argc __unused, argv __unused)
  
  MFC after:	3 days
  Sponsored by:	Dell EMC Isilon

Modified:
  head/tests/sys/file/newfileops_on_fork_test.c

Modified: head/tests/sys/file/newfileops_on_fork_test.c
==============================================================================
--- head/tests/sys/file/newfileops_on_fork_test.c	Sun May 28 08:55:32 2017	(r319059)
+++ head/tests/sys/file/newfileops_on_fork_test.c	Sun May 28 08:57:08 2017	(r319060)
@@ -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;


More information about the svn-src-head mailing list