aboutsummaryrefslogtreecommitdiffstats
path: root/src/vpp-api/vom/route_domain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/vpp-api/vom/route_domain.cpp')
-rw-r--r--src/vpp-api/vom/route_domain.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vpp-api/vom/route_domain.cpp b/src/vpp-api/vom/route_domain.cpp
index c723f9f31b6..e8c1e598899 100644
--- a/src/vpp-api/vom/route_domain.cpp
+++ b/src/vpp-api/vom/route_domain.cpp
@@ -101,8 +101,8 @@ route_domain::to_string() const
{
std::ostringstream s;
s << "route-domain:["
- << "table-id:" << m_table_id << " v4:" << m_hw_v4 << " v6:" << m_hw_v6
- << "]";
+ << "table-id:" << m_table_id << " v4:" << m_hw_v4.to_string()
+ << " v6:" << m_hw_v6.to_string() << "]";
return (s.str());
}