diff options
author | hasso <hasso> | 2004-10-08 08:17:22 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-10-08 08:17:22 +0000 |
commit | 245a20b6cff0ac7f19c0d0f4ecdf839ffcd59c44 (patch) | |
tree | f1fbe419407b7025655cd33a0ea0889f38d5118a /ospfd/ospf_te.c | |
parent | f0543fc0c5e41a40342e53cc5689b0edb4422da4 (diff) | |
download | quagga-245a20b6cff0ac7f19c0d0f4ecdf839ffcd59c44.tar.bz2 quagga-245a20b6cff0ac7f19c0d0f4ecdf839ffcd59c44.tar.xz |
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 1d442501..a4980034 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 { |