network: Remove unnecessary casts

This commit is contained in:
Gabriel Arrobo
2022-03-14 12:29:15 -07:00
committed by Tom Henderson
parent dcd0ed947c
commit 10d4dd2023

View File

@@ -134,8 +134,8 @@ QueueDiscItem::Print (std::ostream& os) const
{
os << GetPacket () << " "
<< "Dst addr " << m_address << " "
<< "proto " << (uint16_t) m_protocol << " "
<< "txq " << (uint8_t) m_txq
<< "proto " << m_protocol << " "
<< "txq " << +m_txq
;
}