diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index 7e606cda30ef..e747aedaf4c7 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -479,7 +479,7 @@ void m_copy_pkthdr(struct mbuf *, struct mbuf *); struct mbuf *m_devget(char *, int, int, struct ifnet *, void (*copy)(char *, caddr_t, u_int)); struct mbuf *m_dup(struct mbuf *, int); -unsigned m_fixhdr(struct mbuf *); +u_int m_fixhdr(struct mbuf *); struct mbuf *m_free(struct mbuf *); void m_freem(struct mbuf *); struct mbuf *m_get(int, short); @@ -488,7 +488,7 @@ struct mbuf *m_getcl(int, short, int); struct mbuf *m_gethdr(int, short); struct mbuf *m_gethdr_clrd(int, short); struct mbuf *m_getm(struct mbuf *, int, int, short); -unsigned m_length(struct mbuf *, struct mbuf **); +u_int m_length(struct mbuf *, struct mbuf **); struct mbuf *m_prepend(struct mbuf *, int, int); void m_print(const struct mbuf *); struct mbuf *m_pulldown(struct mbuf *, int, int, int *);