diff options
author | markm <markm@FreeBSD.org> | 2002-10-06 09:56:52 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2002-10-06 09:56:52 +0000 |
commit | 586be0c8e408503046f9ec2876df528aa332c963 (patch) | |
tree | 84040930ae71078abf8687693e2929fe322cc7a2 | |
parent | 86028a3db23d5b258109be65a1a42fa1e0e5531b (diff) | |
download | FreeBSD-src-586be0c8e408503046f9ec2876df528aa332c963.zip FreeBSD-src-586be0c8e408503046f9ec2876df528aa332c963.tar.gz |
Be consistent WRT function argument names. Other arguments only have
types, so remove these names. This also helps by not polluting
namespace.
-rw-r--r-- | sys/sys/mbuf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index e747aed..e62bedd 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -470,14 +470,14 @@ void m_cat(struct mbuf *, struct mbuf *); void m_chtype(struct mbuf *, short); void m_clget(struct mbuf *, int); void m_extadd(struct mbuf *, caddr_t, u_int, - void (*free)(void *, void *), void *, int, int); + void (*)(void *, void *), void *, int, int); void m_copyback(struct mbuf *, int, int, caddr_t); void m_copydata(const struct mbuf *, int, int, caddr_t); struct mbuf *m_copym(struct mbuf *, int, int, int); struct mbuf *m_copypacket(struct mbuf *, int); void m_copy_pkthdr(struct mbuf *, struct mbuf *); struct mbuf *m_devget(char *, int, int, struct ifnet *, - void (*copy)(char *, caddr_t, u_int)); + void (*)(char *, caddr_t, u_int)); struct mbuf *m_dup(struct mbuf *, int); u_int m_fixhdr(struct mbuf *); struct mbuf *m_free(struct mbuf *); |