From fb5a450fe7ca484b548de65f61c0b539b902ec3f Mon Sep 17 00:00:00 2001 From: ckishimo Date: Tue, 25 Jan 2022 18:47:47 +0100 Subject: [PATCH] ospf6d: fix indentation in show ipv6 ospf area Signed-off-by: ckishimo --- ospf6d/ospf6_area.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ospf6d/ospf6_area.c b/ospf6d/ospf6_area.c index 417fc69694..75587b4d3a 100644 --- a/ospf6d/ospf6_area.c +++ b/ospf6d/ospf6_area.c @@ -511,11 +511,13 @@ void ospf6_area_show(struct vty *vty, struct ospf6_area *oa, if (oa->ts_spf.tv_sec || oa->ts_spf.tv_usec) { result = monotime_since(&oa->ts_spf, NULL); if (result / TIMER_SECOND_MICRO > 0) { - vty_out(vty, "SPF last executed %ld.%lds ago\n", + vty_out(vty, + " SPF last executed %ld.%lds ago\n", result / TIMER_SECOND_MICRO, result % TIMER_SECOND_MICRO); } else { - vty_out(vty, "SPF last executed %ldus ago\n", + vty_out(vty, + " SPF last executed %ldus ago\n", result); } } else