Fix compiler warning

This commit is contained in:
Yang Tse 2005-12-08 20:38:04 +00:00
parent c94f3e8188
commit 6a0ed81e67
1 changed files with 1 additions and 1 deletions

View File

@ -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 */