svn commit: r325846 - stable/11/usr.bin/rctl

Baptiste Daroussin bapt at FreeBSD.org
Wed Nov 15 12:20:54 UTC 2017


Author: bapt
Date: Wed Nov 15 12:20:53 2017
New Revision: 325846
URL: https://svnweb.freebsd.org/changeset/base/325846

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

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

Modified: stable/11/usr.bin/rctl/rctl.c
==============================================================================
--- stable/11/usr.bin/rctl/rctl.c	Wed Nov 15 12:19:11 2017	(r325845)
+++ stable/11/usr.bin/rctl/rctl.c	Wed Nov 15 12:20:53 2017	(r325846)
@@ -586,7 +586,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