diff options
author | rwatson <rwatson@FreeBSD.org> | 2006-01-22 01:08:30 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2006-01-22 01:08:30 +0000 |
commit | 17949ce55e891800af47f14e7109321898b5e07c (patch) | |
tree | cdb8457b71957b60dbd01d402dc96f1a3c5f9c03 /sys | |
parent | c48c44545b9ec59109a74751828036f99677be19 (diff) | |
download | FreeBSD-src-17949ce55e891800af47f14e7109321898b5e07c.zip FreeBSD-src-17949ce55e891800af47f14e7109321898b5e07c.tar.gz |
Convert last remaining function in ip_gre.c to ANSI C function
declaration.
MFC after: 1 week
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/ip_gre.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/netinet/ip_gre.c b/sys/netinet/ip_gre.c index e9a2ace..0faf84e 100644 --- a/sys/netinet/ip_gre.c +++ b/sys/netinet/ip_gre.c @@ -310,9 +310,7 @@ gre_mobile_input(struct mbuf *m, int hlen) * in_gre.c during destroy. */ static struct gre_softc * -gre_lookup(m, proto) - struct mbuf *m; - u_int8_t proto; +gre_lookup(struct mbuf *m, u_int8_t proto) { struct ip *ip = mtod(m, struct ip *); struct gre_softc *sc; |