svn commit: r303894 - head/usr.sbin/ancontrol

Pedro F. Giffuni pfg at FreeBSD.org
Tue Aug 9 19:46:07 UTC 2016


Author: pfg
Date: Tue Aug  9 19:46:05 2016
New Revision: 303894
URL: https://svnweb.freebsd.org/changeset/base/303894

Log:
  ancontrol(8): replace comma with semicolon when pertinent.
  
  Uses of commas instead of a semicolons can easily go undetected. The comma
  can serve as a statement separator but this shouldn't be abused when
  statements are meant to be standalone.
  
  Detected with devel/coccinelle following a hint from DragonFlyBSD.
  
  MFC after:	1 month

Modified:
  head/usr.sbin/ancontrol/ancontrol.c

Modified: head/usr.sbin/ancontrol/ancontrol.c
==============================================================================
--- head/usr.sbin/ancontrol/ancontrol.c	Tue Aug  9 19:44:33 2016	(r303893)
+++ head/usr.sbin/ancontrol/ancontrol.c	Tue Aug  9 19:46:05 2016	(r303894)
@@ -573,9 +573,9 @@ an_dumpstats(const char *iface)
 	printf("Management frames transmitted:\t\t\t[ %u ]\n",
 	    stats->an_tx_mgmt_pkts);
 	printf("Refresh frames received:\t\t\t[ %u ]\n",
-	    stats->an_rx_refresh_pkts),
+	    stats->an_rx_refresh_pkts);
 	printf("Refresh frames transmitted:\t\t\t[ %u ]\n",
-	    stats->an_tx_refresh_pkts),
+	    stats->an_tx_refresh_pkts);
 	printf("Poll frames received:\t\t\t\t[ %u ]\n",
 	    stats->an_rx_poll_pkts);
 	printf("Poll frames transmitted:\t\t\t[ %u ]\n",


More information about the svn-src-head mailing list