diff options
author | hasso <hasso> | 2004-10-08 10:17:22 +0200 |
---|---|---|
committer | hasso <hasso> | 2004-10-08 10:17:22 +0200 |
commit | eb1ce6059a00f3f0dd92c965aa5982907b54c00d (patch) | |
tree | ebd6583ba2f2f9909c25653d0349662e08c26ecf /ospfd/ospf_te.c | |
parent | Argh, fix typo. (diff) | |
download | frr-eb1ce6059a00f3f0dd92c965aa5982907b54c00d.tar.xz frr-eb1ce6059a00f3f0dd92c965aa5982907b54c00d.zip |
Compiler warnings fixes round 1.
Diffstat (limited to 'ospfd/ospf_te.c')
-rw-r--r-- | ospfd/ospf_te.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ospfd/ospf_te.c b/ospfd/ospf_te.c index 1d4425017..a4980034a 100644 --- a/ospfd/ospf_te.c +++ b/ospfd/ospf_te.c @@ -1872,8 +1872,10 @@ DEFUN (show_mpls_te_link, /* Show All Interfaces. */ if (argc == 0) - LIST_LOOP (iflist, ifp, node) - show_mpls_te_link_sub (vty, ifp); + { + LIST_LOOP (iflist, ifp, node) + show_mpls_te_link_sub (vty, ifp); + } /* Interface name is specified. */ else { |