‘__builtin___sprintf_chk’ may write a terminating nul past the end of
the destination [-Werror=format-overflow=]
Enlarge string size to avoid this warning.
Fixes: f2a3245e7aec ("net/ice: support ddp dump switch rule binary")
Signed-off-by: Steve Yang <[email protected]>
---
drivers/net/ice/ice_ddp_package.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ice/ice_ddp_package.c
b/drivers/net/ice/ice_ddp_package.c
index b881fa3ded..a27a4a2da2 100644
--- a/drivers/net/ice/ice_ddp_package.c
+++ b/drivers/net/ice/ice_ddp_package.c
@@ -445,7 +445,7 @@ ice_dump_switch(struct rte_eth_dev *dev, uint8_t **buff2,
uint32_t *size)
hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
/* table index string format: "0000:" */
- #define TBL_IDX_STR_SIZE 6
+ #define TBL_IDX_STR_SIZE 7
for (i = 0; i < ICE_BLK_MAX_COUNT; i++) {
int res;
uint16_t buff_size;
--
2.25.1