src/dsr/model/dsr-errorbuff.cc
changeset 8756 9a34e618f40b
parent 8752 2da1fab73114
child 9719 4031f7fdce5c
--- a/src/dsr/model/dsr-errorbuff.cc	Sun May 13 10:39:34 2012 -0700
+++ b/src/dsr/model/dsr-errorbuff.cc	Sun May 13 10:47:11 2012 -0700
@@ -56,7 +56,7 @@
        != m_errorBuffer.end (); ++i)
     {
       NS_LOG_INFO ("packet id " << i->GetPacket ()->GetUid () << " " << entry.GetPacket ()->GetUid () << " source " << i->GetSource () << " " << entry.GetSource ()
-                   << " next hop " << i->GetNextHop () << " " << entry.GetNextHop () << " dst " << i->GetDestination () << " " << entry.GetDestination ());
+                                << " next hop " << i->GetNextHop () << " " << entry.GetNextHop () << " dst " << i->GetDestination () << " " << entry.GetDestination ());
 
       if ((i->GetPacket ()->GetUid () == entry.GetPacket ()->GetUid ()) && (i->GetSource () == entry.GetSource ()) && (i->GetNextHop () == entry.GetSource ())
           && (i->GetDestination () == entry.GetDestination ()))
@@ -100,7 +100,7 @@
         }
     }
   m_errorBuffer.erase (std::remove_if (m_errorBuffer.begin (), m_errorBuffer.end (),
-                                      std::bind2nd (std::ptr_fun (ErrorBuffer::LinkEqual), link)), m_errorBuffer.end ());
+                                       std::bind2nd (std::ptr_fun (ErrorBuffer::LinkEqual), link)), m_errorBuffer.end ());
 }
 
 bool
@@ -169,7 +169,7 @@
         }
     }
   m_errorBuffer.erase (std::remove_if (m_errorBuffer.begin (), m_errorBuffer.end (), pred),
-                      m_errorBuffer.end ());
+                       m_errorBuffer.end ());
 }
 
 void