[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20141027.154621.543894481047212079.davem@davemloft.net>
Date: Mon, 27 Oct 2014 15:46:21 -0400 (EDT)
From: David Miller <davem@...emloft.net>
To: fabf@...net.be
Cc: linux-kernel@...r.kernel.org, acme@...stprotocols.net,
netdev@...r.kernel.org
Subject: Re: [PATCH 1/1 net-next] ipx: replace long unsigned int by
unsigned long
From: Fabian Frederick <fabf@...net.be>
Date: Mon, 27 Oct 2014 19:05:33 +0100
> @@ -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),
How about we kill the silly cast altogether and use plain %08X?
Thanks.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists