Răsfoiți Sursa

COMP: Remove some warnings

Andy Cedilnik 19 ani în urmă
părinte
comite
a58b0d6856
2 a modificat fișierele cu 5 adăugiri și 5 ștergeri
  1. 4 4
      Utilities/cmcurl/tftp.c
  2. 1 1
      Utilities/cmcurl/transfer.c

+ 4 - 4
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;
 

+ 1 - 1
Utilities/cmcurl/transfer.c

@@ -1244,7 +1244,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
              (k->bytecount + nread >= k->maxdownload)) {
             /* The 'excess' amount below can't be more than BUFSIZE which
                always will fit in a size_t */
-            size_t excess = k->bytecount + nread - k->maxdownload;
+            size_t excess = (size_t)(k->bytecount + nread - k->maxdownload);
             if (excess > 0 && !k->ignorebody) {
               infof(data,
                     "Rewinding stream by : %d"