diff options
author | Florin Coras <fcoras@cisco.com> | 2020-05-11 15:31:20 +0000 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2020-05-11 15:29:21 +0000 |
commit | 1ae16c8f3bebe33b2404ad845a2f09f910a06390 (patch) | |
tree | 4b9bfeb50e795207bd0507fb825e8a40c3a5f7be /src/vlib/error.c | |
parent | bedf48a17cbac03684d28af5dfba099ea3fd9d3f (diff) |
vlib: fix u64 error counter cli printing
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Ie35dc623394cfb6c358740361fd85aa0924ab187
Diffstat (limited to 'src/vlib/error.c')
-rw-r--r-- | src/vlib/error.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vlib/error.c b/src/vlib/error.c index 0918f624a66..7357f17c278 100644 --- a/src/vlib/error.c +++ b/src/vlib/error.c @@ -247,10 +247,10 @@ show_errors (vlib_main_t * vm, continue; if (verbose) - vlib_cli_output (vm, "%10Ld%=40v%=20s%=6d", c, n->name, + vlib_cli_output (vm, "%10lu%=40v%=20s%=6d", c, n->name, em->error_strings_heap[i], i); else - vlib_cli_output (vm, "%10d%=40v%s", c, n->name, + vlib_cli_output (vm, "%10lu%=40v%s", c, n->name, em->error_strings_heap[i]); } } @@ -270,7 +270,7 @@ show_errors (vlib_main_t * vm, if (sums[i]) { if (verbose) - vlib_cli_output (vm, "%10Ld%=40v%=20s%=10d", sums[i], n->name, + vlib_cli_output (vm, "%10lu%=40v%=20s%=10d", sums[i], n->name, em->error_strings_heap[i], i); } } |