]> git.proxmox.com Git - mirror_frr.git/commitdiff
zebra: fix style for 7d9ee1
authorQuentin Young <qlyoung@cumulusnetworks.com>
Tue, 26 Feb 2019 19:04:15 +0000 (19:04 +0000)
committerQuentin Young <qlyoung@cumulusnetworks.com>
Tue, 26 Feb 2019 19:24:47 +0000 (19:24 +0000)
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
zebra/zebra_vxlan.c

index 7d4d5db6b09f92e9a6b5650af3000af3744256c9..6d2444637139e5b5a2f500647eab776fb180d2c2 100644 (file)
@@ -7090,9 +7090,10 @@ void zebra_vxlan_print_vnis_detail(struct vty *vty, struct zebra_vrf *zvrf,
        zes.zvrf = zvrf;
 
        /* Display all L2-VNIs */
-       hash_iterate(zvrf->vni_table, (void (*)(struct hash_bucket *,
-                                               void *))zvni_print_hash_detail,
-                    &zes);
+       hash_iterate(
+               zvrf->vni_table,
+               (void (*)(struct hash_bucket *, void *))zvni_print_hash_detail,
+               &zes);
 
        /* Display all L3-VNIs */
        hash_iterate(zrouter.l3vni_table,
@@ -7101,8 +7102,9 @@ void zebra_vxlan_print_vnis_detail(struct vty *vty, struct zebra_vrf *zvrf,
                     &zes);
 
        if (use_json) {
-               vty_out(vty, "%s\n", json_object_to_json_string_ext(
-                                            json, JSON_C_TO_STRING_PRETTY));
+               vty_out(vty, "%s\n",
+                       json_object_to_json_string_ext(
+                               json, JSON_C_TO_STRING_PRETTY));
                json_object_free(json);
        }
 }