--- 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)
{