From: Daniel Stenberg Date: Wed, 5 May 2004 07:30:52 +0000 (+0000) Subject: additional typecasts in an attempt to avoid compiler warnings when switching X-Git-Tag: curl-7_12_0~198 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6def0892eaea1a4fd174b74a95d637a30a6a6d18;p=thirdparty%2Fcurl.git additional typecasts in an attempt to avoid compiler warnings when switching from 64 bit types to 32 bit ones --- diff --git a/src/main.c b/src/main.c index 23c103a03e..a11f0277cf 100644 --- a/src/main.c +++ b/src/main.c @@ -2278,7 +2278,7 @@ static int my_fwrite(void *buffer, size_t sz, size_t nmemb, void *stream) if( size*1000 > config->recvpersecond*timediff) { /* figure out how many milliseconds to rest */ - sleep_time = size*1000/config->recvpersecond - timediff; + sleep_time = (long)(size*1000/config->recvpersecond - timediff); /* * Make sure we don't sleep for so long that we trigger the speed @@ -2351,7 +2351,7 @@ static int my_fread(void *buffer, size_t sz, size_t nmemb, void *userp) if( xfered*1000 > config->sendpersecond*timediff) { /* figure out how many milliseconds to rest */ - sleep_time = xfered*1000/config->sendpersecond - timediff; + sleep_time = (long)(xfered*1000/config->sendpersecond - timediff); if(sleep_time > 0) { go_sleep (sleep_time); now = curlx_tvnow(); @@ -2361,7 +2361,7 @@ static int my_fread(void *buffer, size_t sz, size_t nmemb, void *userp) if(size > config->sendpersecond) { /* lower the size to actually read */ - nmemb = config->sendpersecond; + nmemb = (size_t)config->sendpersecond; sz = 1; } }