Make m_print const correct (avoids a warning)

This commit is contained in:
Eivind Eklund 1999-12-20 18:10:00 +00:00
parent 74864123b0
commit 6357e7b507

View File

@ -1152,7 +1152,7 @@ void
m_print(const struct mbuf *m)
{
int len;
struct mbuf *m2;
const struct mbuf *m2;
len = m->m_pkthdr.len;
m2 = m;