From: Richard Whitehouse Date: Tue, 17 May 2011 19:38:30 +0000 (+0100) Subject: Remove redundant brackets from UDP sequence header X-Git-Url: https://git.richardwhiuk.com/?a=commitdiff_plain;h=402bac0fa24d639b227d6df63b3a6fa853a5b947;p=ns-moose.git Remove redundant brackets from UDP sequence header --- diff --git a/src/applications/udp-client-server/seq-ts-header.cc b/src/applications/udp-client-server/seq-ts-header.cc index bb7b6ce..16b9996 100644 --- a/src/applications/udp-client-server/seq-ts-header.cc +++ b/src/applications/udp-client-server/seq-ts-header.cc @@ -69,7 +69,7 @@ SeqTsHeader::GetInstanceTypeId (void) const void SeqTsHeader::Print (std::ostream &os) const { - os << "(seq=" << m_seq << " time=" << TimeStep (m_ts).GetSeconds () << ")"; + os << "seq=" << m_seq << " time=" << TimeStep (m_ts).GetSeconds (); } uint32_t SeqTsHeader::GetSerializedSize (void) const