From 421ca44ae2d25113a352ef8a49063655df352eb4 Mon Sep 17 00:00:00 2001 From: Maria Lingemark Date: Tue, 14 Nov 2017 09:04:24 +0100 Subject: [PATCH] pdump: fix typo in error log Fixes: 278f945402c5 ("pdump: add new library for packet capture") Signed-off-by: Maria Lingemark Acked-by: Bruce Richardson --- lib/librte_pdump/rte_pdump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_pdump/rte_pdump.c b/lib/librte_pdump/rte_pdump.c index 00ab87ecff..bc18f814a0 100644 --- a/lib/librte_pdump/rte_pdump.c +++ b/lib/librte_pdump/rte_pdump.c @@ -353,7 +353,7 @@ set_pdump_rxtx_cbs(struct pdump_request *p) &port); if (ret < 0) { RTE_LOG(ERR, PDUMP, - "failed to get potid for device id=%s\n", + "failed to get port id for device id=%s\n", p->data.en_v1.device); return -EINVAL; } @@ -365,7 +365,7 @@ set_pdump_rxtx_cbs(struct pdump_request *p) &port); if (ret < 0) { RTE_LOG(ERR, PDUMP, - "failed to get potid for device id=%s\n", + "failed to get port id for device id=%s\n", p->data.dis_v1.device); return -EINVAL; } -- 2.20.1