From f1433817e4d3ab79164136292e9ce71191dc49f0 Mon Sep 17 00:00:00 2001 From: Mark Murray Date: Sun, 6 Oct 2002 09:56:52 +0000 Subject: [PATCH] Be consistent WRT function argument names. Other arguments only have types, so remove these names. This also helps by not polluting namespace. --- sys/sys/mbuf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index e747aedaf4c7..e62bedd517d3 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 *);