From: Devyn Collier Johnson <devyn.john...@banduracyber.com> Signed-off-by: Devyn Collier Johnson <devyn.john...@banduracyber.com> --- lib/librte_mbuf/rte_mbuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/librte_mbuf/rte_mbuf.c b/lib/librte_mbuf/rte_mbuf.c index f3fe16eb0..305084531 100644 --- a/lib/librte_mbuf/rte_mbuf.c +++ b/lib/librte_mbuf/rte_mbuf.c @@ -474,7 +474,7 @@ rte_pktmbuf_dump(FILE *f, const struct rte_mbuf *m, unsigned dump_len) __rte_mbuf_sanity_check(m, 1); fprintf(f, "dump mbuf at %p, iova=%"PRIx64", buf_len=%u\n", - (const void *)m, (uint64_t)m->buf_iova, (unsigned)m->buf_len); + (const void *)m, (uint64_t)m->buf_iova, (unsigned int)m->buf_len); fprintf(f, " pkt_len=%"PRIu32", ol_flags=%"PRIx64", nb_segs=%u, " "in_port=%u\n", m->pkt_len, m->ol_flags, (unsigned)m->nb_segs, (unsigned)m->port); -- 2.17.1