src/core/model/unix-fd-reader.cc
changeset 7169 358f71a624d8
parent 6821 203367ae7433
child 7256 b04ba6772f8c
--- a/src/core/model/unix-fd-reader.cc	Fri May 13 14:51:51 2011 -0400
+++ b/src/core/model/unix-fd-reader.cc	Fri May 13 14:52:27 2011 -0400
@@ -82,7 +82,7 @@
   // scheduling a "destroy time" method to make sure the thread exits before
   // proceeding.
   //
-  if (! m_destroyEvent.IsRunning ())
+  if (!m_destroyEvent.IsRunning ())
     {
       // hold a reference to ensure that this object is not
       // deallocated before the destroy-time event fires
@@ -162,7 +162,7 @@
       if (r == -1 && errno != EINTR)
         {
           NS_FATAL_ERROR ("select() failed: " << strerror (errno));
-	}
+        }
 
       if (FD_ISSET (m_evpipe[0], &readfds))
         {
@@ -187,7 +187,7 @@
               NS_LOG_WARN ("read() failed: " << strerror (errno));
               break;
             }
-	}
+        }
 
       if (m_stop)
         {