mirror of
https://github.com/curl/curl.git
synced 2026-07-23 17:37:17 +03:00
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:
parent
7977bc3dfa
commit
3b47d231ac
1 changed files with 1 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue