diff options
author | 2014-10-03 01:11:17 +0000 | |
---|---|---|
committer | 2014-10-03 01:11:17 +0000 | |
commit | 3f9ff067c914281a6cf4b1d3e2f55b8d0360410f (patch) | |
tree | a2a7bd16c735a18aaddb22a09de256f358bfcbe6 | |
parent | now that pools are mpsafe, we can make the mbuf allocators on top (diff) | |
download | wireguard-openbsd-3f9ff067c914281a6cf4b1d3e2f55b8d0360410f.tar.xz wireguard-openbsd-3f9ff067c914281a6cf4b1d3e2f55b8d0360410f.zip |
i moved some macros into functions, and a trailing \ on a statement
snuck in.
someone who knows how cpp/cc works can explain to me why this
compiled.
-rw-r--r-- | sys/kern/uipc_mbuf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/uipc_mbuf.c b/sys/kern/uipc_mbuf.c index adf9a02f11d..75a70cfb95c 100644 --- a/sys/kern/uipc_mbuf.c +++ b/sys/kern/uipc_mbuf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uipc_mbuf.c,v 1.195 2014/10/03 01:02:47 dlg Exp $ */ +/* $OpenBSD: uipc_mbuf.c,v 1.196 2014/10/03 01:11:17 dlg Exp $ */ /* $NetBSD: uipc_mbuf.c,v 1.15.4.1 1996/06/13 17:11:44 cgd Exp $ */ /* @@ -353,7 +353,7 @@ m_extref(struct mbuf *o, struct mbuf *n) n->m_ext.ext_nextref->m_ext.ext_prevref = n; mtx_leave(&m_extref_mtx); - MCLREFDEBUGN((n), __FILE__, __LINE__); \ + MCLREFDEBUGN((n), __FILE__, __LINE__); } static inline u_int |