diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2007-03-18 20:18:50 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2007-03-18 20:18:50 (GMT) |
commit | a58b0d68568a8fdd07dec59576f40da5dffab192 (patch) | |
tree | 64a3e665158766a97a45ecc00b610dea11019d67 /Utilities/cmcurl/tftp.c | |
parent | faa2d53e3fb920c9e33d97d4eabf8f5a921e95d6 (diff) | |
download | CMake-a58b0d68568a8fdd07dec59576f40da5dffab192.zip CMake-a58b0d68568a8fdd07dec59576f40da5dffab192.tar.gz CMake-a58b0d68568a8fdd07dec59576f40da5dffab192.tar.bz2 |
COMP: Remove some warnings
Diffstat (limited to 'Utilities/cmcurl/tftp.c')
-rw-r--r-- | Utilities/cmcurl/tftp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Utilities/cmcurl/tftp.c b/Utilities/cmcurl/tftp.c index 9ec1a15..0e2e7ab 100644 --- a/Utilities/cmcurl/tftp.c +++ b/Utilities/cmcurl/tftp.c @@ -184,10 +184,10 @@ void tftp_set_timeouts(tftp_state_data_t *state) timeout = maxtime ; /* Average restart after 5 seconds */ - state->retry_max = timeout/5; + state->retry_max = (int)(timeout/5); /* Compute the re-start interval to suit the timeout */ - state->retry_time = timeout/state->retry_max; + state->retry_time = (int)(timeout/state->retry_max); if(state->retry_time<1) state->retry_time=1; @@ -202,7 +202,7 @@ void tftp_set_timeouts(tftp_state_data_t *state) timeout = maxtime/10 ; /* Average reposting an ACK after 15 seconds */ - state->retry_max = timeout/15; + state->retry_max = (int)(timeout/15); } /* But bound the total number */ if(state->retry_max<3) @@ -212,7 +212,7 @@ void tftp_set_timeouts(tftp_state_data_t *state) state->retry_max=50; /* Compute the re-ACK interval to suit the timeout */ - state->retry_time = timeout/state->retry_max; + state->retry_time = (int)(timeout/state->retry_max); if(state->retry_time<1) state->retry_time=1; |