route: Fix FIB next hop removal bug
refs: #2018
Change-Id: Id107c04d4cdce9cc756acad5d262e5c1e0cc29a8
diff --git a/src/conf-parameter.hpp b/src/conf-parameter.hpp
index b8b5b72..8f2965b 100644
--- a/src/conf-parameter.hpp
+++ b/src/conf-parameter.hpp
@@ -289,12 +289,12 @@
}
void
- setMaxFacesPerPrefix(int32_t mfpp)
+ setMaxFacesPerPrefix(uint32_t mfpp)
{
m_maxFacesPerPrefix = mfpp;
}
- int32_t
+ uint32_t
getMaxFacesPerPrefix() const
{
return m_maxFacesPerPrefix;
@@ -353,7 +353,7 @@
double m_corR;
double m_corTheta;
- int32_t m_maxFacesPerPrefix;
+ uint32_t m_maxFacesPerPrefix;
std::string m_logDir;
std::string m_seqFileDir;