svn commit: r325847 - stable/10/usr.bin/rctl

Baptiste Daroussin bapt at FreeBSD.org
Wed Nov 15 12:21:13 UTC 2017


Author: bapt
Date: Wed Nov 15 12:21:06 2017
New Revision: 325847
URL: https://svnweb.freebsd.org/changeset/base/325847

Log:
  MFC r325717:
  
  Remove __unused attributed on arguments that are actually used

Modified:
  stable/10/usr.bin/rctl/rctl.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.bin/rctl/rctl.c
==============================================================================
--- stable/10/usr.bin/rctl/rctl.c	Wed Nov 15 12:20:53 2017	(r325846)
+++ stable/10/usr.bin/rctl/rctl.c	Wed Nov 15 12:21:06 2017	(r325847)
@@ -494,7 +494,7 @@ usage(void)
 }
 
 int
-main(int argc __unused, char **argv __unused)
+main(int argc, char **argv)
 {
 	int ch, aflag = 0, hflag = 0, nflag = 0, lflag = 0, rflag = 0,
 	    uflag = 0;


More information about the svn-src-all mailing list