diff options
Diffstat (limited to 'src/vppinfra/graph.c')
-rw-r--r-- | src/vppinfra/graph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vppinfra/graph.c b/src/vppinfra/graph.c index 98a29046f17..ea11a96f1c8 100644 --- a/src/vppinfra/graph.c +++ b/src/vppinfra/graph.c @@ -156,7 +156,7 @@ format_graph (u8 * s, va_list * args) graph_t *g = va_arg (*args, graph_t *); graph_node_t *n; graph_link_t *l; - uword indent = format_get_indent (s); + u32 indent = format_get_indent (s); s = format (s, "graph %d nodes", pool_elts (g->nodes)); /* *INDENT-OFF* */ |