From 888c2a3c4e4e2a2642b55d6e163b2289238cbd40 Mon Sep 17 00:00:00 2001 From: Sam Leffler Date: Tue, 14 Oct 2003 18:45:50 +0000 Subject: [PATCH] remove dangling ';'s` that were harmless Supported by: FreeBSD Foundation --- sys/netinet/ip_input.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c index 38b26e09b846..e895d8ddb978 100644 --- a/sys/netinet/ip_input.c +++ b/sys/netinet/ip_input.c @@ -189,8 +189,8 @@ struct mtx ipqlock; #define IPQ_LOCK() mtx_lock(&ipqlock) #define IPQ_UNLOCK() mtx_unlock(&ipqlock) -#define IPQ_LOCK_INIT() mtx_init(&ipqlock, "ipqlock", NULL, MTX_DEF); -#define IPQ_LOCK_ASSERT() mtx_assert(&ipqlock, MA_OWNED); +#define IPQ_LOCK_INIT() mtx_init(&ipqlock, "ipqlock", NULL, MTX_DEF) +#define IPQ_LOCK_ASSERT() mtx_assert(&ipqlock, MA_OWNED) #ifdef IPCTL_DEFMTU SYSCTL_INT(_net_inet_ip, IPCTL_DEFMTU, mtu, CTLFLAG_RW,