From: Ying Xue Date: Fri, 16 Nov 2012 05:51:32 +0000 (+0800) Subject: tipc: eliminate an unnecessary cast of node variable X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=4cb7d55ab4c4726c5d966d5a19e7b304345e74ca;p=~shefty%2Frdma-dev.git tipc: eliminate an unnecessary cast of node variable As the variable:node is currently defined to u32 type, it is unnecessary to cast its type to u32 again when using it. Signed-off-by: Ying Xue Signed-off-by: Paul Gortmaker --- diff --git a/net/tipc/name_distr.c b/net/tipc/name_distr.c index 55d3928dfd6..e0d08055754 100644 --- a/net/tipc/name_distr.c +++ b/net/tipc/name_distr.c @@ -262,7 +262,7 @@ void tipc_named_node_up(unsigned long nodearg) named_distribute(&message_list, node, &publ_zone, max_item_buf); read_unlock_bh(&tipc_nametbl_lock); - tipc_link_send_names(&message_list, (u32)node); + tipc_link_send_names(&message_list, node); } /**