jwoolley 2002/07/15 22:25:44
Modified: poll/unix pollacc.c
Log:
Nuke a warning due to a function that should have been static AFAICT:
pollacc.c:78: warning: no previous prototype for `find_poll_sock'
Revision Changes Path
1.2 +1 -1 apr/poll/unix/pollacc.c
Index: pollacc.c
===================================================================
RCS file: /home/cvs/apr/poll/unix/pollacc.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -u -r1.1 -r1.2
--- pollacc.c 11 Jul 2002 15:32:18 -0000 1.1
+++ pollacc.c 16 Jul 2002 05:25:44 -0000 1.2
@@ -74,7 +74,7 @@
return APR_SUCCESS;
}
-APR_DECLARE(apr_pollfd_t*) find_poll_sock(apr_pollfd_t *aprset, apr_socket_t
*sock)
+static apr_pollfd_t *find_poll_sock(apr_pollfd_t *aprset, apr_socket_t *sock)
{
apr_pollfd_t *curr = aprset;