summaryrefslogtreecommitdiff
path: root/poll
diff options
context:
space:
mode:
authorjwoolley <jwoolley@13f79535-47bb-0310-9956-ffa450edef68>2002-07-16 05:25:44 +0000
committerjwoolley <jwoolley@13f79535-47bb-0310-9956-ffa450edef68>2002-07-16 05:25:44 +0000
commit79999f6d50d7ad0895364d74293ba7f276616411 (patch)
tree23d8007ce4dde5d62d546fa756e30f1058e9d7b9 /poll
parentfa5a4e438181edf014f688dfd247b35274d035d0 (diff)
downloadlibapr-79999f6d50d7ad0895364d74293ba7f276616411.tar.gz
Nuke a warning due to a function that should have been static AFAICT:
pollacc.c:78: warning: no previous prototype for `find_poll_sock' git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63686 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poll')
-rw-r--r--poll/unix/pollacc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/poll/unix/pollacc.c b/poll/unix/pollacc.c
index ea6dfe9a4..d421a45c0 100644
--- a/poll/unix/pollacc.c
+++ b/poll/unix/pollacc.c
@@ -74,7 +74,7 @@ APR_DECLARE(apr_status_t) apr_poll_setup(apr_pollfd_t **new, apr_int32_t num, ap
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;