ben 99/10/05 04:13:14
Modified: src/lib/apr/network_io/unix poll.c
Log:
Use new parameter ordering.
Revision Changes Path
1.8 +1 -2 apache-2.0/src/lib/apr/network_io/unix/poll.c
Index: poll.c
===================================================================
RCS file: /export/home/cvs/apache-2.0/src/lib/apr/network_io/unix/poll.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- poll.c 1999/10/04 16:37:11 1.7
+++ poll.c 1999/10/05 11:13:09 1.8
@@ -283,8 +283,7 @@
#else /* Use select to mimic poll */
-ap_status_t ap_setup_poll(ap_context_t *cont, ap_int32_t num, struct
pollfd_t **
-new)
+ap_status_t ap_setup_poll(struct pollfd_t **new, ap_context_t *cont,
ap_int32_t num)
{
(*new) = (struct pollfd_t *)ap_palloc(cont, sizeof(struct pollfd_t) *
num);
if ((*new) == NULL) {