View | Details | Raw Unified | Return to bug 2439
Collapse All | Expand All

(-)a/src/sixlowpan/model/sixlowpan-header.cc (-2 / +2 lines)
 Lines 815-821    Link Here 
815
815
816
void SixLowPanIphc::Print (std::ostream & os) const
816
void SixLowPanIphc::Print (std::ostream & os) const
817
{
817
{
818
  os << "Compression kind: " << m_baseFormat;
818
  os << "Compression kind: " << int (m_baseFormat);
819
}
819
}
820
820
821
uint32_t SixLowPanIphc::GetSerializedSize () const
821
uint32_t SixLowPanIphc::GetSerializedSize () const
 Lines 1637-1643    Link Here 
1637
1637
1638
void SixLowPanUdpNhcExtension::Print (std::ostream & os) const
1638
void SixLowPanUdpNhcExtension::Print (std::ostream & os) const
1639
{
1639
{
1640
  os << "Compression kind: " << uint8_t (m_baseFormat);
1640
  os << "Compression kind: " << int (m_baseFormat);
1641
}
1641
}
1642
1642
1643
uint32_t SixLowPanUdpNhcExtension::GetSerializedSize () const
1643
uint32_t SixLowPanUdpNhcExtension::GetSerializedSize () const

Return to bug 2439