diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2003-07-15 03:41:16 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2003-07-15 03:41:16 +0000 |
commit | 99b80de08e9ca5f80264aaeb8461ef1eb9aeb036 (patch) | |
tree | 71f9e9c26118ab253b962345eb04559052a962d6 /sys | |
parent | dcfda0a4a4c0dae6f95fd62132b7f9f3641d8584 (diff) |
no named args in prototypes
Diffstat (limited to 'sys')
-rw-r--r-- | sys/net/if_bridge.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_bridge.h b/sys/net/if_bridge.h index 7c1a52c64e6..8e36e2076c3 100644 --- a/sys/net/if_bridge.h +++ b/sys/net/if_bridge.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bridge.h,v 1.24 2003/06/25 09:41:18 henning Exp $ */ +/* $OpenBSD: if_bridge.h,v 1.25 2003/07/15 03:41:15 jason Exp $ */ /* * Copyright (c) 1999, 2000 Jason L. Wright (jason@thought.net) @@ -270,7 +270,7 @@ void bridge_ifdetach(struct ifnet *); struct mbuf *bridge_input(struct ifnet *, struct ether_header *, struct mbuf *); int bridge_output(struct ifnet *, struct mbuf *, struct sockaddr *, - struct rtentry *rt); + struct rtentry *); struct mbuf *bstp_input(struct bridge_softc *, struct ifnet *, struct ether_header *, struct mbuf *); void bstp_initialization(struct bridge_softc *); |