aboutsummaryrefslogtreecommitdiff
path: root/docs/libcurl/curl_multi_wait.3
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2012-10-08 14:32:15 +0200
committerDaniel Stenberg <daniel@haxx.se>2012-10-08 14:32:15 +0200
commit211605f0c57e12dc7199a5972c8c720e7f6300d7 (patch)
treea71e066a0142ccf1ffdf752308c0bab3bbc76c89 /docs/libcurl/curl_multi_wait.3
parenta5b6f91e8d631c5750b1b883dd812576fd930c3c (diff)
curl_multi_wait.3: renamed the last argument variable for clarity
Diffstat (limited to 'docs/libcurl/curl_multi_wait.3')
-rw-r--r--docs/libcurl/curl_multi_wait.34
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/libcurl/curl_multi_wait.3 b/docs/libcurl/curl_multi_wait.3
index 9250a77eb..e91c360bf 100644
--- a/docs/libcurl/curl_multi_wait.3
+++ b/docs/libcurl/curl_multi_wait.3
@@ -30,7 +30,7 @@ CURLMcode curl_multi_wait(CURLM *multi_handle,
struct curl_waitfd extra_fds[],
unsigned int extra_nfds,
int timeout_ms,
- int *ret);
+ int *numfds);
.ad
.SH DESCRIPTION
This function polls on all file descriptors used by the curl easy handles
@@ -40,7 +40,7 @@ detected on at least one of the handles or \fItimeout_ms\fP has passed.
The calling application may pass additional curl_waitfd structures which are
similar to \fIpoll(2)\fP's pollfd structure to be waited on in the same call.
-On completion, if \fIret\fI is supplied, it will be populated with the
+On completion, if \fInumfds\fI is supplied, it will be populated with the
number of file descriptors on which interesting events occured.
This function is encouraged to be used instead of select(3) when using the