mirror of
https://github.com/curl/curl.git
synced 2026-08-25 02:33:31 +03:00
lib: fix conversion warnings with gcc on macOS
This commit is contained in:
parent
954c7dfb91
commit
6f93d5f604
5 changed files with 5 additions and 5 deletions
|
|
@ -102,7 +102,7 @@ int main(void)
|
|||
if(timeout.tv_sec > 1)
|
||||
timeout.tv_sec = 1;
|
||||
else
|
||||
timeout.tv_usec = (curl_timeo % 1000) * 1000;
|
||||
timeout.tv_usec = (int)(curl_timeo % 1000) * 1000;
|
||||
}
|
||||
|
||||
/* get file descriptors from the transfers */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue