You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by pq...@apache.org on 2004/11/20 00:53:54 UTC

svn commit: r105899 - apr/apr/trunk/poll/unix

Author: pquerna
Date: Fri Nov 19 15:53:52 2004
New Revision: 105899

Modified:
   apr/apr/trunk/poll/unix/poll.c
Log:
* poll/unix/poll.c: Remove Trailing Whitespace. No Functional Changes.


Modified: apr/apr/trunk/poll/unix/poll.c
==============================================================================
--- apr/apr/trunk/poll/unix/poll.c	(original)
+++ apr/apr/trunk/poll/unix/poll.c	Fri Nov 19 15:53:52 2004
@@ -107,17 +107,17 @@
     apr_int16_t rv = 0;
 
     if (event & APR_POLLIN)
-        rv |= POLLIN;        
+        rv |= POLLIN;
     if (event & APR_POLLPRI)
-        rv |= POLLPRI;        
+        rv |= POLLPRI;
     if (event & APR_POLLOUT)
-        rv |= POLLOUT;       
+        rv |= POLLOUT;
     if (event & APR_POLLERR)
-        rv |= POLLERR;        
+        rv |= POLLERR;
     if (event & APR_POLLHUP)
-        rv |= POLLHUP;        
+        rv |= POLLHUP;
     if (event & APR_POLLNVAL)
-        rv |= POLLNVAL;        
+        rv |= POLLNVAL;
 
     return rv;
 }