mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-06 13:23:18 +00:00
netfilter: fix clang-12 fmt string warnings
nf_conntrack_h323_main.c:198:6: warning: format specifies type 'unsigned short' but xt_AUDIT.c:121:9: warning: format specifies type 'unsigned char' but the argument has type 'int' [-Wformat] Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
parent
89258f8e41
commit
8a1c08ad19
@ -194,7 +194,7 @@ static int get_tpkt_data(struct sk_buff *skb, unsigned int protoff,
|
|||||||
if (tcpdatalen == 4) { /* Separate TPKT header */
|
if (tcpdatalen == 4) { /* Separate TPKT header */
|
||||||
/* Netmeeting sends TPKT header and data separately */
|
/* Netmeeting sends TPKT header and data separately */
|
||||||
pr_debug("nf_ct_h323: separate TPKT header indicates "
|
pr_debug("nf_ct_h323: separate TPKT header indicates "
|
||||||
"there will be TPKT data of %hu bytes\n",
|
"there will be TPKT data of %d bytes\n",
|
||||||
tpktlen - 4);
|
tpktlen - 4);
|
||||||
info->tpkt_len[dir] = tpktlen - 4;
|
info->tpkt_len[dir] = tpktlen - 4;
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -117,7 +117,7 @@ static int audit_tg_check(const struct xt_tgchk_param *par)
|
|||||||
const struct xt_audit_info *info = par->targinfo;
|
const struct xt_audit_info *info = par->targinfo;
|
||||||
|
|
||||||
if (info->type > XT_AUDIT_TYPE_MAX) {
|
if (info->type > XT_AUDIT_TYPE_MAX) {
|
||||||
pr_info_ratelimited("Audit type out of range (valid range: 0..%hhu)\n",
|
pr_info_ratelimited("Audit type out of range (valid range: 0..%u)\n",
|
||||||
XT_AUDIT_TYPE_MAX);
|
XT_AUDIT_TYPE_MAX);
|
||||||
return -ERANGE;
|
return -ERANGE;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user