aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/event/opdl/opdl_evdev_xstats.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/event/opdl/opdl_evdev_xstats.c')
-rw-r--r--drivers/event/opdl/opdl_evdev_xstats.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/event/opdl/opdl_evdev_xstats.c b/drivers/event/opdl/opdl_evdev_xstats.c
index 0e6c6bd5..27b3d880 100644
--- a/drivers/event/opdl/opdl_evdev_xstats.c
+++ b/drivers/event/opdl/opdl_evdev_xstats.c
@@ -32,10 +32,9 @@ opdl_xstats_init(struct rte_eventdev *dev)
uint32_t index = (i * max_num_port_xstat) + j;
/* Name */
- sprintf(device->port_xstat[index].stat.name,
- "port_%02u_%s",
- i,
- port_xstat_str[j]);
+ snprintf(device->port_xstat[index].stat.name,
+ sizeof(device->port_xstat[index].stat.name),
+ "port_%02u_%s", i, port_xstat_str[j]);
/* ID */
device->port_xstat[index].id = index;