diff options
author | pfg <pfg@FreeBSD.org> | 2016-09-08 15:25:41 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2016-09-08 15:25:41 +0000 |
commit | 1a264b6c55be53aa6af99a402a6dd4910a35b2cc (patch) | |
tree | 9b95a54d2dba8c22e52edb1f71edfeef3dbbb710 /usr.sbin | |
parent | df6118f9f9cb97b8f026464f186ed508b4da082b (diff) | |
download | FreeBSD-src-1a264b6c55be53aa6af99a402a6dd4910a35b2cc.zip FreeBSD-src-1a264b6c55be53aa6af99a402a6dd4910a35b2cc.tar.gz |
MFC r303893, r303894:
misc replacements of 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.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ancontrol/ancontrol.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ancontrol/ancontrol.c b/usr.sbin/ancontrol/ancontrol.c index 4ff32ff..ba2419a 100644 --- a/usr.sbin/ancontrol/ancontrol.c +++ b/usr.sbin/ancontrol/ancontrol.c @@ -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", |