From e3ea79747a3fb6770842a809b818aaf32e06f02b Mon Sep 17 00:00:00 2001 From: Gabriel Ganne Date: Thu, 12 Oct 2017 10:53:31 +0200 Subject: 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 --- src/vppinfra/std-formats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vppinfra/std-formats.c') diff --git a/src/vppinfra/std-formats.c b/src/vppinfra/std-formats.c index a11d758f284..debf1941791 100644 --- a/src/vppinfra/std-formats.c +++ b/src/vppinfra/std-formats.c @@ -112,7 +112,7 @@ format_hex_bytes (u8 * s, va_list * va) u8 * format_white_space (u8 * s, va_list * va) { - uword n = va_arg (*va, uword); + u32 n = va_arg (*va, u32); while (n-- > 0) vec_add1 (s, ' '); return s; -- cgit 1.2.3-korg