TFTP: fix compiler warning

Curl_fillreadbuffer()'s second argument takes an int, so
typecasting to another is a bad idea.
This commit is contained in:
Daniel Stenberg 2010-06-08 10:35:06 +02:00
parent 7977bc3dfa
commit 3b47d231ac
1 changed files with 1 additions and 2 deletions

View File

@ -759,8 +759,7 @@ static CURLcode tftp_tx(tftp_state_data_t *state, tftp_event_t event)
state->state = TFTP_STATE_FIN;
return CURLE_OK;
}
res = Curl_fillreadbuffer(state->conn, (size_t)state->blksize,
&state->sbytes);
res = Curl_fillreadbuffer(state->conn, state->blksize, &state->sbytes);
if(res)
return res;
sbytes = sendto(state->sockfd, (void *)state->spacket.data,