diff options
author | Ying Xue <ying.xue@windriver.com> | 2012-11-16 00:51:32 -0500 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2012-11-22 14:33:28 -0500 |
commit | 4cb7d55ab4c4726c5d966d5a19e7b304345e74ca (patch) | |
tree | 04254777e5aa1a9e077e54962912aa6334d2c93b | |
parent | c64f7a6a1fb13565687ae5415736095f82557880 (diff) |
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 <ying.xue@windriver.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
-rw-r--r-- | net/tipc/name_distr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tipc/name_distr.c b/net/tipc/name_distr.c index 55d3928dfd67..e0d08055754e 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) | |||
262 | named_distribute(&message_list, node, &publ_zone, max_item_buf); | 262 | named_distribute(&message_list, node, &publ_zone, max_item_buf); |
263 | read_unlock_bh(&tipc_nametbl_lock); | 263 | read_unlock_bh(&tipc_nametbl_lock); |
264 | 264 | ||
265 | tipc_link_send_names(&message_list, (u32)node); | 265 | tipc_link_send_names(&message_list, node); |
266 | } | 266 | } |
267 | 267 | ||
268 | /** | 268 | /** |