Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752235AbaJ0SFl (ORCPT ); Mon, 27 Oct 2014 14:05:41 -0400 Received: from mailrelay006.isp.belgacom.be ([195.238.6.172]:48238 "EHLO mailrelay006.isp.belgacom.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751550AbaJ0SFj (ORCPT ); Mon, 27 Oct 2014 14:05:39 -0400 X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AmEPAOGITlRXQ3zJ/2dsb2JhbABcgw6BLLlDCwUBdJpDgR4XAX2EMC8jgRo3iEUBvHCPB4Y0iXBkHYQ1BY9pjXiWLoFHAYIxPC+BBoFFAQEB From: Fabian Frederick To: linux-kernel@vger.kernel.org Cc: Fabian Frederick , Arnaldo Carvalho de Melo , "David S. Miller" , netdev@vger.kernel.org Subject: [PATCH 1/1 net-next] ipx: replace long unsigned int by unsigned long Date: Mon, 27 Oct 2014 19:05:33 +0100 Message-Id: <1414433133-29161-1-git-send-email-fabf@skynet.be> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Use standard unsigned long. Signed-off-by: Fabian Frederick --- net/ipx/ipx_proc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/ipx/ipx_proc.c b/net/ipx/ipx_proc.c index e15c16a..c0cb442 100644 --- a/net/ipx/ipx_proc.c +++ b/net/ipx/ipx_proc.c @@ -90,7 +90,7 @@ static int ipx_seq_route_show(struct seq_file *seq, void *v) seq_printf(seq, "%08lX ", (unsigned long int)ntohl(rt->ir_net)); if (rt->ir_routed) seq_printf(seq, "%08lX %02X%02X%02X%02X%02X%02X\n", - (long unsigned int)ntohl(rt->ir_intrfc->if_netnum), + (unsigned long)ntohl(rt->ir_intrfc->if_netnum), rt->ir_router_node[0], rt->ir_router_node[1], rt->ir_router_node[2], rt->ir_router_node[3], rt->ir_router_node[4], rt->ir_router_node[5]); -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/