]> git.baikalelectronics.ru Git - kernel.git/commit
pktgen: Fix inconsistent of format with argument type in pktgen.c
authorYe Bin <yebin10@huawei.com>
Wed, 30 Sep 2020 01:08:37 +0000 (09:08 +0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 2 Oct 2020 01:45:23 +0000 (18:45 -0700)
commit4c0653f82abc32e886b2c66244f9fa696bb4f62f
tree9e56c546da1f887d472115e11fc6aaf539cf5e29
parent216dfbbe5d799e5f951a11c6c7982b805790f44f
pktgen: Fix inconsistent of format with argument type in pktgen.c

Fix follow warnings:
[net/core/pktgen.c:925]: (warning) %u in format string (no. 1)
requires 'unsigned int' but the argument type is 'signed int'.
[net/core/pktgen.c:942]: (warning) %u in format string (no. 1)
requires 'unsigned int' but the argument type is 'signed int'.
[net/core/pktgen.c:962]: (warning) %u in format string (no. 1)
requires 'unsigned int' but the argument type is 'signed int'.
[net/core/pktgen.c:984]: (warning) %u in format string (no. 1)
requires 'unsigned int' but the argument type is 'signed int'.
[net/core/pktgen.c:1149]: (warning) %d in format string (no. 1)
requires 'int' but the argument type is 'unsigned int'.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Ye Bin <yebin10@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/pktgen.c