src/devices/mesh/dot11s/ie-dot11s-beacon-timing.cc
changeset 5157 ace422ad12df
parent 5156 5b499f25655a
child 5160 86c06ea5dd32
--- a/src/devices/mesh/dot11s/ie-dot11s-beacon-timing.cc	Fri Aug 21 23:33:52 2009 +0400
+++ b/src/devices/mesh/dot11s/ie-dot11s-beacon-timing.cc	Mon Aug 24 18:05:31 2009 +0400
@@ -148,11 +148,11 @@
 void
 IeBeaconTiming::PrintInformation (std::ostream& os) const
 {
-  os << "Number of units: " << (uint16_t) m_numOfUnits << "\n";
+  os << "Number of units: " << (uint16_t) m_numOfUnits << std::endl;
   for (NeighboursTimingUnitsList::const_iterator j = m_neighbours.begin (); j != m_neighbours.end (); j++)
     {
       os << "AID=" << (uint16_t) (*j)->GetAid () << ", Last beacon was at " << (*j)->GetLastBeacon ()
-          << ", with beacon interval " << (*j)->GetBeaconInterval () << "\n";
+          << ", with beacon interval " << (*j)->GetBeaconInterval () << std::endl;
     }
 }
 void