Commit 775d9e06 authored by Yang Tse's avatar Yang Tse
Browse files

fix compiler warning: comparison between signed and unsigned

parent a20d55fb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -420,7 +420,7 @@ static CURLcode tftp_rx(tftp_state_data_t *state, tftp_event_t event)
    }

    /* Check if completed (That is, a less than full packet is received) */
    if(state->rbytes < sizeof(state->spacket)){
    if(state->rbytes < (ssize_t)sizeof(state->spacket)){
      state->state = TFTP_STATE_FIN;
    }
    else {