Whitespce cleanup: Remove whitespace at end-on-line, remove tabs, wrap
[senf.git] / senf / Packets / 80211Bundle / WLANBeaconPacket.cc
index ade514e..c0698f9 100644 (file)
@@ -34,7 +34,7 @@
 
 prefix_ void senf::WLANBeaconPacketType::dump(packet p, std::ostream &os)
 {
-    boost::io::ios_all_saver ias(os);    
+    boost::io::ios_all_saver ias(os);
     os << "WLAN beacon frame:\n"
        << senf::fieldName("timestamp")      << unsigned( p->timestamp())      << "\n"
        << senf::fieldName("beaconInterval") << unsigned( p->beaconInterval()) << "\n";
@@ -43,7 +43,7 @@ prefix_ void senf::WLANBeaconPacketType::dump(packet p, std::ostream &os)
     os << "  Optional Information Elements:\n";
     typedef parser::ieList_t::container ieListContainer_t;
     ieListContainer_t ieListContainer (p->ieList());
-    for (ieListContainer_t::iterator i = ieListContainer.begin(); i != ieListContainer.end(); ++i)
+    for (ieListContainer_t::const_iterator i = ieListContainer.begin(); i != ieListContainer.end(); ++i)
         i->dump( os);
 }