diff options
Diffstat (limited to 'ext/curl/multi.c')
-rw-r--r-- | ext/curl/multi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/curl/multi.c b/ext/curl/multi.c index 0d55e75657..1d325bc329 100644 --- a/ext/curl/multi.c +++ b/ext/curl/multi.c @@ -233,7 +233,7 @@ PHP_FUNCTION(curl_multi_select) } #if LIBCURL_VERSION_NUM >= 0x071c00 /* Available since 7.28.0 */ - error = curl_multi_wait(mh->multi, NULL, 0, (unsigned long) timeout * 1000.0, &numfds); + error = curl_multi_wait(mh->multi, NULL, 0, (unsigned long) (timeout * 1000.0), &numfds); if (CURLM_OK != error) { SAVE_CURLM_ERROR(mh, error); RETURN_LONG(-1); |