diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-07-26 01:13:58 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-07-26 01:13:58 +0200 |
commit | c0325cfa4217ccfcbbc938ebf59634d3f5fcf1f8 (patch) | |
tree | 2ef6325a6c376f1079a2bb3e501b5565bd01016f /ospfd | |
parent | Add --enable-werror to configure (diff) | |
download | frr-c0325cfa4217ccfcbbc938ebf59634d3f5fcf1f8.tar.xz frr-c0325cfa4217ccfcbbc938ebf59634d3f5fcf1f8.zip |
Fixup of a few missed warnings after --enable-werror turned on
Ticket: Trivial
Reviewed by: Trivial
Testing: Compilation
Diffstat (limited to 'ospfd')
-rw-r--r-- | ospfd/ospf_interface.c | 1 | ||||
-rw-r--r-- | ospfd/ospf_interface.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ospfd/ospf_interface.c b/ospfd/ospf_interface.c index 61fd629b8..6e43462ff 100644 --- a/ospfd/ospf_interface.c +++ b/ospfd/ospf_interface.c @@ -31,6 +31,7 @@ #include "command.h" #include "stream.h" #include "log.h" +#include "zclient.h" #include "bfd.h" #include "ospfd/ospfd.h" diff --git a/ospfd/ospf_interface.h b/ospfd/ospf_interface.h index addc8c7ba..68dbf186d 100644 --- a/ospfd/ospf_interface.h +++ b/ospfd/ospf_interface.h @@ -80,7 +80,7 @@ struct ospf_if_params u_int32_t network_lsa_seqnum; /* Network LSA seqnum */ /* BFD configuration */ - void *bfd_info; + struct bfd_info *bfd_info; }; enum |