diff options
author | Andrew Lunn <andrew@lunn.ch> | 2020-10-28 01:43:33 +0100 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2020-10-30 11:29:49 -0700 |
commit | b3b7e64bcbcb46542650d1980ea22ff25f0332ee (patch) | |
tree | e83aefc7a5e9fd646393c39588969cc5195da2b7 /.clang-format | |
parent | Merge branch 'selftests-net-bridge-add-tests-for-igmpv3' (diff) | |
download | linux-dev-b3b7e64bcbcb46542650d1980ea22ff25f0332ee.tar.xz linux-dev-b3b7e64bcbcb46542650d1980ea22ff25f0332ee.zip |
net: tipc: Fix parameter types passed to %s formater
Now that the compiler is performing printf checking, we get the warning:
net/tipc/netlink_compat.c: In function ‘tipc_nl_compat_link_stat_dump’:
net/tipc/netlink_compat.c:591:39: warning: format ‘%s’ expects argument of type ‘char *’, but argument 3 has type ‘void *’ [-Wformat=]
591 | tipc_tlv_sprintf(msg->rep, "\nLink <%s>\n",
| ~^
| |
| char *
| %p
592 | nla_data(link[TIPC_NLA_LINK_NAME]));
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| |
| void *
There is no nla_string(), so cast to a char *.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Link: https://lore.kernel.org/r/20201028004333.929816-1-andrew@lunn.ch
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to '.clang-format')
0 files changed, 0 insertions, 0 deletions