diff options
author | Luca Boccassi <luca.boccassi@gmail.com> | 2017-11-16 13:18:21 +0000 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2017-11-16 13:19:21 +0000 |
commit | 169a9de21e263aa6599cdc2d87a45ae158d9f509 (patch) | |
tree | 54b453b237bd1606b0811b4312155441cc99f017 /lib/librte_mbuf/rte_mbuf.c | |
parent | 976be7358289d46cd5ed8131bbf2e2c5a6838d3c (diff) |
New upstream version 17.11
Change-Id: Iee75c1267695faa05f289fe9bb512945507a4c45
Signed-off-by: Luca Boccassi <luca.boccassi@gmail.com>
Diffstat (limited to 'lib/librte_mbuf/rte_mbuf.c')
-rw-r--r-- | lib/librte_mbuf/rte_mbuf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/librte_mbuf/rte_mbuf.c b/lib/librte_mbuf/rte_mbuf.c index 2e08b9e9..7543662f 100644 --- a/lib/librte_mbuf/rte_mbuf.c +++ b/lib/librte_mbuf/rte_mbuf.c @@ -203,7 +203,7 @@ void rte_mbuf_sanity_check(const struct rte_mbuf *m, int is_header) { const struct rte_mbuf *m_seg; - unsigned nb_segs; + unsigned int nb_segs; if (m == NULL) rte_panic("mbuf is NULL\n"); @@ -239,7 +239,7 @@ void rte_pktmbuf_dump(FILE *f, const struct rte_mbuf *m, unsigned dump_len) { unsigned int len; - unsigned nb_segs; + unsigned int nb_segs; __rte_mbuf_sanity_check(m, 1); |