You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2006/12/20 19:34:25 UTC

svn commit: r489168 - /incubator/qpid/branches/event-queue-2006-12-20/cpp/lib/common/sys/posix/EventChannel.cpp

Author: aconway
Date: Wed Dec 20 10:34:24 2006
New Revision: 489168

URL: http://svn.apache.org/viewvc?view=rev&rev=489168
Log:
Fix compile error.

Modified:
    incubator/qpid/branches/event-queue-2006-12-20/cpp/lib/common/sys/posix/EventChannel.cpp

Modified: incubator/qpid/branches/event-queue-2006-12-20/cpp/lib/common/sys/posix/EventChannel.cpp
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/event-queue-2006-12-20/cpp/lib/common/sys/posix/EventChannel.cpp?view=diff&rev=489168&r1=489167&r2=489168
==============================================================================
--- incubator/qpid/branches/event-queue-2006-12-20/cpp/lib/common/sys/posix/EventChannel.cpp (original)
+++ incubator/qpid/branches/event-queue-2006-12-20/cpp/lib/common/sys/posix/EventChannel.cpp Wed Dec 20 10:34:24 2006
@@ -258,7 +258,6 @@
     int status = ::epoll_ctl(epollFd, op, myFd, &ee);
     if (status < 0)
         throw QPID_POSIX_ERROR(errno);
-    }
 }