Skip to content
Snippets Groups Projects
Commit e8748bc1 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

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

parent e624714c
No related branches found
No related tags found
No related merge requests found
......@@ -155,7 +155,7 @@ int main(void)
#ifdef WIN32
Sleep(L);
#else
sleep(L / 1000);
sleep((unsigned int)L / 1000);
#endif
}
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment