diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-02-03 14:26:33 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-02-03 14:29:56 +0100 |
commit | 285a775ac7c3c42f9ddded27bab3fa991d0e75c4 (patch) | |
tree | 6764f5af4843517186592342c7f600fb6a251543 /ospf6d/ospf6_interface.c | |
parent | ospfd: Fix compile warnings (diff) | |
download | frr-285a775ac7c3c42f9ddded27bab3fa991d0e75c4.tar.xz frr-285a775ac7c3c42f9ddded27bab3fa991d0e75c4.zip |
ospf6d: Fix compile warnings
These compile issues were found by running ./buildtest.sh
on a fedora 25 box.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'ospf6d/ospf6_interface.c')
-rw-r--r-- | ospf6d/ospf6_interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_interface.c b/ospf6d/ospf6_interface.c index cd3b171a6..65fff1b16 100644 --- a/ospf6d/ospf6_interface.c +++ b/ospf6d/ospf6_interface.c @@ -712,7 +712,7 @@ interface_up (struct thread *thread) if (IS_OSPF6_DEBUG_INTERFACE) zlog_debug ("Interface %s has no link local address, can't execute [InterfaceUp]", oi->interface->name); - return 0; + return 0; } /* Recompute cost */ |