lib: Fix warning -> error build issue

When compiling ./buildtest.sh the gcc compiler
on fedora 25 complains about indentation

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
Donald Sharp 2017-02-07 13:55:55 -05:00
parent 7df2e1c379
commit fa6d4efea0

View File

@ -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;
}