more style fixes: 'unsigned' should be 'u_int' in this file.

Submitted by: bde
This commit is contained in:
bmilekic 2002-09-18 22:29:33 +00:00
parent b2e82fa6e3
commit 0ad373f87a

View File

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