summaryrefslogtreecommitdiff
path: root/lib/thread.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2019-06-11 13:31:52 +0200
committerGitHub <noreply@github.com>2019-06-11 13:31:52 +0200
commite787685f864d143bf8ec1c76e16b9c318a380b52 (patch)
tree0cd6e3a3a659ad099471c0ef4c1dc6cc11a7f8b7 /lib/thread.c
parent0afc154435ee93bd411718c488321d25d815a568 (diff)
parent42e01756c1027d603007d0e33fbdee970c549a6c (diff)
More compiler cleanup (#4487)
More compiler cleanup
Diffstat (limited to 'lib/thread.c')
-rw-r--r--lib/thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/thread.c b/lib/thread.c
index d3fb2cdf36..3879e936a1 100644
--- a/lib/thread.c
+++ b/lib/thread.c
@@ -95,7 +95,7 @@ static void cpu_record_hash_free(void *a)
static void vty_out_cpu_thread_history(struct vty *vty,
struct cpu_thread_history *a)
{
- vty_out(vty, "%5zu %10zu.%03lu %9zu %8zu %9zu %8lu %9lu",
+ vty_out(vty, "%5zu %10zu.%03zu %9zu %8zu %9zu %8zu %9zu",
a->total_active, a->cpu.total / 1000, a->cpu.total % 1000,
a->total_calls, a->cpu.total / a->total_calls, a->cpu.max,
a->real.total / a->total_calls, a->real.max);