remove extra parentheses in return statement
[dpdk.git] / app / test-pmd / flowgen.c
index e3620f5..0f307e8 100644 (file)
@@ -96,7 +96,7 @@ tx_mbuf_alloc(struct rte_mempool *mp)
 
        m = __rte_mbuf_raw_alloc(mp);
        __rte_mbuf_sanity_check_raw(m, 0);
-       return (m);
+       return m;
 }