diff options
| author | Bosko Milekic <bmilekic@FreeBSD.org> | 2002-08-08 13:31:57 +0000 |
|---|---|---|
| committer | Bosko Milekic <bmilekic@FreeBSD.org> | 2002-08-08 13:31:57 +0000 |
| commit | 850be9af25d488cddbd586ed57679cfb30853f79 (patch) | |
| tree | d7b56694a7186175c0be8c5328c9949b1318e700 | |
| parent | 0584320e56c68def4b849352131d0e5cfeb29ba2 (diff) | |
Notes
| -rw-r--r-- | sys/kern/subr_mbuf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/kern/subr_mbuf.c b/sys/kern/subr_mbuf.c index 1fa38f8130c7..c059c49aec19 100644 --- a/sys/kern/subr_mbuf.c +++ b/sys/kern/subr_mbuf.c @@ -1051,8 +1051,7 @@ mb_reclaim(void) #define _mext_init_ref(m, ref) do { \ (m)->m_ext.ref_cnt = ((ref) == NULL) ? \ - malloc(sizeof(u_int), M_MBUF, M_NOWAIT) : \ - (m)->m_ext.ref_cnt = (u_int *)(ref); \ + malloc(sizeof(u_int), M_MBUF, M_NOWAIT) : (u_int *)(ref); \ if ((m)->m_ext.ref_cnt != NULL) { \ *((m)->m_ext.ref_cnt) = 0; \ MEXT_ADD_REF((m)); \ |
