1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

remove dangling ';'s` that were harmless

Supported by:	FreeBSD Foundation
This commit is contained in:
Sam Leffler 2003-10-14 18:45:50 +00:00
parent bd19669855
commit 888c2a3c4e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=121091

View File

@ -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,