diff options
author | Gabriel Ganne <gabriel.ganne@enea.com> | 2017-10-12 10:53:31 +0200 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2017-10-14 09:13:39 +0000 |
commit | e3ea79747a3fb6770842a809b818aaf32e06f02b (patch) | |
tree | 7098da8575aa41bc59e11829a03cc41828cafec3 /src/plugins/dpdk/ipsec/cli.c | |
parent | 41988e58ba8bced39f3aa85b2a0c0fb37c9343ce (diff) |
change format_get_indent() to use u32 instead of uword
This follows commit d3c008d108aa2187d1a2afe2833b4de25ca2c2ab by
Christophe Fontaine.
Change-Id: I0c4df40df44be2ac0ab25817fa050a1f619eca4d
Signed-off-by: Gabriel Ganne <gabriel.ganne@enea.com>
Diffstat (limited to 'src/plugins/dpdk/ipsec/cli.c')
-rw-r--r-- | src/plugins/dpdk/ipsec/cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/dpdk/ipsec/cli.c b/src/plugins/dpdk/ipsec/cli.c index ad6025f72ea..9f470bfe990 100644 --- a/src/plugins/dpdk/ipsec/cli.c +++ b/src/plugins/dpdk/ipsec/cli.c @@ -501,7 +501,7 @@ u8 * format_dpdk_mempool (u8 * s, va_list * args) { struct rte_mempool *mp = va_arg (*args, struct rte_mempool *); - uword indent = format_get_indent (s); + u32 indent = format_get_indent (s); u32 count = rte_mempool_avail_count (mp); s = format (s, "%s\n%Uavailable %7d, allocated %7d total %7d\n", |