Fixed one missed request for the mailing-list patch-checker

Message ID 20191105184549.5122-1-Devyn.Johnson@BanduraCyber.com (mailing list archive)
State Not Applicable, archived
Headers
Series Fixed one missed request for the mailing-list patch-checker |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation fail apply issues

Commit Message

Devyn Johnson Nov. 5, 2019, 6:45 p.m. UTC
  From: Devyn Collier Johnson <Devyn.Johnson@BanduraCyber.com>

Signed-off-by: Devyn Collier Johnson <Devyn.Johnson@BanduraCyber.com>
---
 lib/librte_mbuf/rte_mbuf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

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);