diff options
author | Roman Divacky <rdivacky@FreeBSD.org> | 2009-06-21 10:29:31 +0000 |
---|---|---|
committer | Roman Divacky <rdivacky@FreeBSD.org> | 2009-06-21 10:29:31 +0000 |
commit | e40bae9a45a5f485e2b1c5964e46019b0eb05d07 (patch) | |
tree | 709b2b15ea4228160504c96db1a7d1a3e5ee6170 /sys/netinet6/raw_ip6.c | |
parent | 941c2e1cd1e62387d1e876739b5e6b0c46fef332 (diff) |
Switch cmd argument to u_long. This matches what if_ethersubr.c does and
allows the code to compile cleanly on amd64 with clang.
Reviewed by: rwatson
Approved by: ed (mentor)
Notes
Notes:
svn path=/head/; revision=194581
Diffstat (limited to 'sys/netinet6/raw_ip6.c')
-rw-r--r-- | sys/netinet6/raw_ip6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet6/raw_ip6.c b/sys/netinet6/raw_ip6.c index 8b5a05cde4ec..3c514d888259 100644 --- a/sys/netinet6/raw_ip6.c +++ b/sys/netinet6/raw_ip6.c @@ -145,7 +145,7 @@ int (*ip6_mrouter_set)(struct socket *, struct sockopt *); int (*ip6_mrouter_get)(struct socket *, struct sockopt *); int (*ip6_mrouter_done)(void); int (*ip6_mforward)(struct ip6_hdr *, struct ifnet *, struct mbuf *); -int (*mrt6_ioctl)(int, caddr_t); +int (*mrt6_ioctl)(u_long, caddr_t); /* * Setup generic address and protocol structures for raw_input routine, then |