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

Submitted by: bde
This commit is contained in:
Bosko Milekic 2002-09-18 22:29:33 +00:00
parent cd5791c108
commit 589b704f4e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=103568

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