aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorBosko Milekic <bmilekic@FreeBSD.org>2002-09-18 22:29:33 +0000
committerBosko Milekic <bmilekic@FreeBSD.org>2002-09-18 22:29:33 +0000
commit589b704f4ec83df0942559344dcbf2cad158c64d (patch)
tree38494c2e8ef364fd2557f1fa44b9a2a391e23368 /sys
parentcd5791c108071c0c7d4c6676cb532eec29830b82 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/mbuf.h4
1 files changed, 2 insertions, 2 deletions
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 *);