diff options
author | Arnd Bergmann <arnd@arndb.de> | 2017-07-14 14:07:03 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-07-14 18:03:11 +0200 |
commit | c41626ce3113eb2d40b5aa1c4fc2b0cd2785367b (patch) | |
tree | 60b0d3c90f88a3bffaf2b2d73cc47b83998bb01e /drivers/net/vmxnet3 | |
parent | bnx2x: fix format overflow warning (diff) | |
download | linux-c41626ce3113eb2d40b5aa1c4fc2b0cd2785367b.tar.xz linux-c41626ce3113eb2d40b5aa1c4fc2b0cd2785367b.zip |
net: thunder_bgx: avoid format string overflow warning
gcc warns that the temporary buffer might be too small here:
drivers/net/ethernet/cavium/thunder/thunder_bgx.c: In function 'bgx_probe':
drivers/net/ethernet/cavium/thunder/thunder_bgx.c:1020:16: error: '%d' directive writing between 1 and 10 bytes into a region of size between 9 and 11 [-Werror=format-overflow=]
sprintf(str, "BGX%d LMAC%d mode", bgx->bgx_id, lmacid);
^~~~~~~~~~~~~~~~~~~
drivers/net/ethernet/cavium/thunder/thunder_bgx.c:1020:16: note: directive argument in the range [0, 2147483647]
drivers/net/ethernet/cavium/thunder/thunder_bgx.c:1020:3: note: 'sprintf' output between 16 and 27 bytes into a destination of size 20
This probably can't happen, but it can't hurt to make it long
enough for the theoretical limit.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/vmxnet3')
0 files changed, 0 insertions, 0 deletions