mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Correct a last minute merge error for new M_HASHTYPE macros. This didn't
turn up as a build problem because the macros aren't used (yet). MFC after: 3 days Sponsored by: Juniper Networks, Inc.
This commit is contained in:
parent
373815ef7b
commit
fa0fb79540
1 changed files with 1 additions and 1 deletions
|
|
@ -247,7 +247,7 @@ struct mbuf {
|
|||
#define M_HASHTYPE_SET(m, v) do { \
|
||||
(m)->m_flags &= ~M_HASHTYPEBITS; \
|
||||
(m)->m_flags |= ((v) << M_HASHTYPE_SHIFT); \
|
||||
while (0)
|
||||
} while (0)
|
||||
#define M_HASHTYPE_TEST(m, v) (M_HASHTYPE_GET(m) == (v))
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue