projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
338f756
)
[IPX]: Correct argument type of ipxrtr_delete().
author
Alexey Dobriyan
<adobriyan@gmail.com>
Tue, 16 May 2006 22:07:28 +0000
(15:07 -0700)
committer
David S. Miller
<davem@davemloft.net>
Tue, 16 May 2006 22:07:28 +0000
(15:07 -0700)
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>
net/ipx/ipx_route.c
patch
|
blob
|
history
diff --git
a/net/ipx/ipx_route.c
b/net/ipx/ipx_route.c
index 67774448efd966eb801dc822d0788e09a530be54..a394c6fe19a26839e07dbed3f7015224d03c1161 100644
(file)
--- 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;