]> git.proxmox.com Git - mirror_frr.git/commitdiff
lib: Fix warning -> error build issue
authorDonald Sharp <sharpd@cumulusnetworks.com>
Tue, 7 Feb 2017 18:55:55 +0000 (13:55 -0500)
committerDonald Sharp <sharpd@cumulusnetworks.com>
Tue, 7 Feb 2017 18:55:55 +0000 (13:55 -0500)
When compiling ./buildtest.sh the gcc compiler
on fedora 25 complains about indentation

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
lib/routemap.c

index 7be24dfda4cf2af3c332f90fa5d395998883f67e..49b303983849a245c2b7ac3f14cad82da9cb677e 100644 (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;
 }