tipc: trivial endian annotation in debug statement
Use htonl rather than ntohl on a u32. net/tipc/name_table.c:557:2: warning: cast to restricted __be32 Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f400923735
commit
f574179b63
1 changed files with 1 additions and 1 deletions
|
@ -555,7 +555,7 @@ static struct name_seq *nametbl_find_seq(u32 type)
|
||||||
struct name_seq *ns;
|
struct name_seq *ns;
|
||||||
|
|
||||||
dbg("find_seq %u,(%u,0x%x) table = %p, hash[type] = %u\n",
|
dbg("find_seq %u,(%u,0x%x) table = %p, hash[type] = %u\n",
|
||||||
type, ntohl(type), type, table.types, hash(type));
|
type, htonl(type), type, table.types, hash(type));
|
||||||
|
|
||||||
seq_head = &table.types[hash(type)];
|
seq_head = &table.types[hash(type)];
|
||||||
hlist_for_each_entry(ns, seq_node, seq_head, ns_list) {
|
hlist_for_each_entry(ns, seq_node, seq_head, ns_list) {
|
||||||
|
|
Loading…
Reference in a new issue