Found by doing duplicate word scan.

Signed-off-by: Stephen Hemminger <step...@networkplumber.org>
---
 lib/ring/rte_ring.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/ring/rte_ring.c b/lib/ring/rte_ring.c
index cddaf6b2876f..8ed455043dee 100644
--- a/lib/ring/rte_ring.c
+++ b/lib/ring/rte_ring.c
@@ -280,7 +280,8 @@ rte_ring_create_elem(const char *name, unsigned int esize, 
unsigned int count,
 
        /* reserve a memory zone for this ring. If we can't get rte_config or
         * we are secondary process, the memzone_reserve function will set
-        * rte_errno for us appropriately - hence no check in this this 
function */
+        * rte_errno for us appropriately - hence no check in this function
+        */
        mz = rte_memzone_reserve_aligned(mz_name, ring_size, socket_id,
                                         mz_flags, __alignof__(*r));
        if (mz != NULL) {
-- 
2.35.1

Reply via email to