From fa6d4efea02054875772717a7343f0dff89a6ccc Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Tue, 7 Feb 2017 13:55:55 -0500 Subject: [PATCH] lib: Fix warning -> error build issue When compiling ./buildtest.sh the gcc compiler on fedora 25 complains about indentation Signed-off-by: Donald Sharp --- lib/routemap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/routemap.c b/lib/routemap.c index 7be24dfda4..49b3039838 100644 --- a/lib/routemap.c +++ b/lib/routemap.c @@ -2303,9 +2303,9 @@ DEFUN (no_match_metric, if (argc <= idx_number) return rmap_match_set_hook.no_match_metric (vty, index, "metric", NULL, RMAP_EVENT_MATCH_DELETED); - return rmap_match_set_hook.no_match_metric(vty, index, "metric", - argv[idx_number]->arg, - RMAP_EVENT_MATCH_DELETED); + return rmap_match_set_hook.no_match_metric(vty, index, "metric", + argv[idx_number]->arg, + RMAP_EVENT_MATCH_DELETED); } return CMD_SUCCESS; } -- 2.39.5