diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2006-05-16 15:07:28 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-05-16 15:07:28 -0700 |
commit | 53d42f541278b6c97724465b19bae4730d7a85c8 (patch) | |
tree | cf974cb6debb01c7b54d53b0106a001941460a22 /net/ipx | |
parent | 338f7566e5c26a9547e25d54863ae4e4e5c856d1 (diff) | |
download | linux-3.10-53d42f541278b6c97724465b19bae4730d7a85c8.tar.gz linux-3.10-53d42f541278b6c97724465b19bae4730d7a85c8.tar.bz2 linux-3.10-53d42f541278b6c97724465b19bae4730d7a85c8.zip |
[IPX]: Correct argument type of ipxrtr_delete().
A single caller passes __u32. Inside function "net" is compared with
__u32 (__be32 really, just wasn't annotated).
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipx')
-rw-r--r-- | net/ipx/ipx_route.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipx/ipx_route.c b/net/ipx/ipx_route.c index 67774448efd..a394c6fe19a 100644 --- a/net/ipx/ipx_route.c +++ b/net/ipx/ipx_route.c @@ -119,7 +119,7 @@ out: return rc; } -static int ipxrtr_delete(long net) +static int ipxrtr_delete(__u32 net) { struct ipx_route *r, *tmp; int rc; |