diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2014-10-03 01:11:18 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2014-10-03 01:11:18 +0000 |
commit | ca1d547193f05ada73256741b0b24dd3437493d9 (patch) | |
tree | 4cdc8e71bc261d930d48e4055de23d8d75140edc /sys/kern/uipc_mbuf.c | |
parent | b2372f1642d209dbf7196335f4b3116ffb97c1da (diff) |
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.
Diffstat (limited to 'sys/kern/uipc_mbuf.c')
-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 |