Packets/GenericTLV: some GenericTLVParserRegistry modifications; not sure if it goes...
[senf.git] / senf / Packets / 80221Bundle / MIHPacket.cc
index 619b58d..7f88528 100644 (file)
@@ -85,7 +85,7 @@ prefix_ void senf::MIHGenericPayloadPacketType::dump(packet p, std::ostream &os)
     os << "MIH Payload (service specific TLVs):\n";
     typedef parser::tlvList_t::container tlvListContainer_t;
     tlvListContainer_t tlvListContainer (p->tlvList());
-    for (tlvListContainer_t::iterator i = tlvListContainer.begin(); i != tlvListContainer.end(); ++i)
+    for (tlvListContainer_t::const_iterator i = tlvListContainer.begin(); i != tlvListContainer.end(); ++i)
         i->dump( os);
 }