commit | 9df3f3d28bca0157e2bab2f3171d2ad4f0930634 | [log] [tgz] |
---|---|---|
author | Panagiotis Issaris <takis@issaris.org> | Fri Jul 21 15:52:20 2006 -0700 |
committer | David S. Miller <davem@davemloft.net> | Fri Jul 21 15:52:20 2006 -0700 |
tree | b7cc30698bd9e30846bdce547115ad409ef3d97f | |
parent | 8265abc082d2283b4ef20237efadb71c6f16ed0c [diff] [blame] |
[TIPC]: Removing useless casts Removing useless casts Signed-off-by: Panagiotis Issaris <takis@issaris.org> Signed-off-by: David S. Miller <davem@davemloft.net>
diff --git a/net/tipc/discover.c b/net/tipc/discover.c index 2b84412..ee94de9 100644 --- a/net/tipc/discover.c +++ b/net/tipc/discover.c
@@ -295,7 +295,7 @@ { struct link_req *req; - req = (struct link_req *)kmalloc(sizeof(*req), GFP_ATOMIC); + req = kmalloc(sizeof(*req), GFP_ATOMIC); if (!req) return NULL;