mirror of
https://github.com/curl/curl.git
synced 2026-06-19 14:45:38 +03:00
Fix compiler warning
This commit is contained in:
parent
c94f3e8188
commit
6a0ed81e67
1 changed files with 1 additions and 1 deletions
|
|
@ -205,7 +205,7 @@ void tftp_set_timeouts(tftp_state_data_t *state)
|
|||
else {
|
||||
|
||||
/* Compute drop-dead time */
|
||||
maxtime = data->set.timeout?data->set.timeout:3600;
|
||||
maxtime = (time_t)(data->set.timeout?data->set.timeout:3600);
|
||||
state->max_time = state->start_time+maxtime;
|
||||
|
||||
/* Set per-block timeout to 10% of total */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue