diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-06-14 03:24:33 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-06-14 03:24:33 +0000 |
commit | dda8d6c459407e0c05213fe1102fa1721a877709 (patch) | |
tree | 2924a94d29455f357c867209bfe001b8a3d2b305 /sys/dev/pci/if_em.c | |
parent | 1a4bdb65044d1e76657828eec299825a80c6d5de (diff) |
fix prototype
Diffstat (limited to 'sys/dev/pci/if_em.c')
-rw-r--r-- | sys/dev/pci/if_em.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_em.c b/sys/dev/pci/if_em.c index 1629d02b0ef..188c09012ad 100644 --- a/sys/dev/pci/if_em.c +++ b/sys/dev/pci/if_em.c @@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE. ***************************************************************************/ /* $FreeBSD: if_em.c,v 1.46 2004/09/29 18:28:28 mlaier Exp $ */ -/* $OpenBSD: if_em.c,v 1.56 2005/06/14 03:18:10 brad Exp $ */ +/* $OpenBSD: if_em.c,v 1.57 2005/06/14 03:24:32 brad Exp $ */ #include "bpfilter.h" #include "vlan.h" @@ -181,7 +181,7 @@ void em_disable_promisc(struct em_softc *); void em_set_multi(struct em_softc *); void em_print_hw_stats(struct em_softc *); void em_update_link_status(struct em_softc *); -int em_get_buf(int i, struct em_softc *, +int em_get_buf(int, struct em_softc *, struct mbuf *); void em_enable_vlans(struct em_softc *); void em_disable_vlans(struct em_softc *); |