aboutsummaryrefslogtreecommitdiff
path: root/sys/netpfil/ipfw
diff options
context:
space:
mode:
authorPedro F. Giffuni <pfg@FreeBSD.org>2016-04-10 23:07:00 +0000
committerPedro F. Giffuni <pfg@FreeBSD.org>2016-04-10 23:07:00 +0000
commit74b8d63dcc17c07d8cb21e13f6db517698efd49f (patch)
treef9ef37d6819baa5fad7e8d8d09e679def3577aa7 /sys/netpfil/ipfw
parent61a4e586d4ea3a05c656c094b62a1e550737086c (diff)
downloadsrc-74b8d63dcc17c07d8cb21e13f6db517698efd49f.tar.gz
src-74b8d63dcc17c07d8cb21e13f6db517698efd49f.zip
Cleanup unnecessary semicolons from the kernel.
Found with devel/coccinelle.
Notes
Notes: svn path=/head/; revision=297793
Diffstat (limited to 'sys/netpfil/ipfw')
-rw-r--r--sys/netpfil/ipfw/ip_fw_sockopt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netpfil/ipfw/ip_fw_sockopt.c b/sys/netpfil/ipfw/ip_fw_sockopt.c
index 25ac16eb31c2..857b465515ba 100644
--- a/sys/netpfil/ipfw/ip_fw_sockopt.c
+++ b/sys/netpfil/ipfw/ip_fw_sockopt.c
@@ -230,7 +230,7 @@ ipfw_find_rule(struct ip_fw_chain *chain, uint32_t key, uint32_t id)
lo = i + 1; /* continue from the next one */
else /* r->id >= id */
hi = i; /* this might be good */
- };
+ }
return hi;
}