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:
Robert Watson 2011-06-05 10:07:12 +00:00
parent 373815ef7b
commit fa0fb79540

View file

@ -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))
/*