svn commit: r246813 - projects/diffused_head/sbin/ipfw/diffuse_exporter

Lawrence Stewart lstewart at FreeBSD.org
Fri Feb 15 01:12:48 UTC 2013


Author: lstewart
Date: Fri Feb 15 01:12:47 2013
New Revision: 246813
URL: http://svnweb.freebsd.org/changeset/base/246813

Log:
  Mark an unused variable as such.
  
  Reported by:	clang

Modified:
  projects/diffused_head/sbin/ipfw/diffuse_exporter/diffuse_exporter.c

Modified: projects/diffused_head/sbin/ipfw/diffuse_exporter/diffuse_exporter.c
==============================================================================
--- projects/diffused_head/sbin/ipfw/diffuse_exporter/diffuse_exporter.c	Fri Feb 15 01:00:48 2013	(r246812)
+++ projects/diffused_head/sbin/ipfw/diffuse_exporter/diffuse_exporter.c	Fri Feb 15 01:12:47 2013	(r246813)
@@ -155,7 +155,7 @@ static int stop;
 
 /* Sets the flag to terminate the main loop on receipt of a signal. */
 static void
-sigint_handler(int i)
+sigint_handler(int i __unused)
 {
 
 	stop = 1;


More information about the svn-src-projects mailing list