[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>
This commit is contained in:
Alexey Dobriyan 2006-05-16 15:07:28 -07:00 committed by David S. Miller
parent 338f7566e5
commit 53d42f5412

View file

@ -119,7 +119,7 @@ static int ipxrtr_create(struct ipx_route_definition *rd)
return rc;
}
static int ipxrtr_delete(long net)
static int ipxrtr_delete(__u32 net)
{
struct ipx_route *r, *tmp;
int rc;