You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rp...@apache.org on 2008/04/29 22:19:46 UTC

svn commit: r652085 - /apr/apr/trunk/poll/unix/epoll.c

Author: rpluem
Date: Tue Apr 29 13:19:46 2008
New Revision: 652085

URL: http://svn.apache.org/viewvc?rev=652085&view=rev
Log:
* Silence a compiler warning.

Modified:
    apr/apr/trunk/poll/unix/epoll.c

Modified: apr/apr/trunk/poll/unix/epoll.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/poll/unix/epoll.c?rev=652085&r1=652084&r2=652085&view=diff
==============================================================================
--- apr/apr/trunk/poll/unix/epoll.c (original)
+++ apr/apr/trunk/poll/unix/epoll.c Tue Apr 29 13:19:46 2008
@@ -344,7 +344,7 @@
                     j++;
                 }
             }
-            if ((*num) = j)
+            if (((*num) = j))
                 rv = APR_SUCCESS;
         }
         else {
@@ -363,7 +363,7 @@
                     j++;
                 }
             }
-            if ((*num) = j)
+            if (((*num) = j))
                 rv = APR_SUCCESS;
         }