mirror of
https://github.com/curl/curl.git
synced 2026-07-16 01:47:16 +03:00
10-at-a-time: typecast the argument passed to sleep()
This commit is contained in:
parent
e624714cad
commit
e8748bc1d7
1 changed files with 1 additions and 1 deletions
|
|
@ -155,7 +155,7 @@ int main(void)
|
|||
#ifdef WIN32
|
||||
Sleep(L);
|
||||
#else
|
||||
sleep(L / 1000);
|
||||
sleep((unsigned int)L / 1000);
|
||||
#endif
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue