lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <1414434131.18896.4.camel@perches.com> Date: Mon, 27 Oct 2014 11:22:11 -0700 From: Joe Perches <joe@...ches.com> To: Fabian Frederick <fabf@...net.be> Cc: linux-kernel@...r.kernel.org, Arnaldo Carvalho de Melo <acme@...stprotocols.net>, "David S. Miller" <davem@...emloft.net>, netdev@...r.kernel.org Subject: Re: [PATCH 1/1 net-next] ipx: replace long unsigned int by unsigned long On Mon, 2014-10-27 at 19:05 +0100, Fabian Frederick wrote: > Use standard unsigned long. [] > diff --git 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), Maybe better to use no cast at all seq_printf(seq, "%08X %02X%02X%02X%02X%02X%02X\n", ntohl(etc...), -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists