10-at-a-time: typecast the argument passed to sleep()

This commit is contained in:
Daniel Stenberg 2016-02-17 15:01:21 +01:00
parent e624714cad
commit e8748bc1d7
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ int main(void)
#ifdef WIN32
Sleep(L);
#else
sleep(L / 1000);
sleep((unsigned int)L / 1000);
#endif
}
else {