From: Yang Tse Date: Mon, 21 Jul 2008 03:59:23 +0000 (+0000) Subject: fix compiler warning: comparison between signed and unsigned X-Git-Tag: cares-1_5_3~333 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=775d9e06152f4b46e568389ab7cdcee45ebe2a5c;p=curl fix compiler warning: comparison between signed and unsigned --- diff --git a/lib/tftp.c b/lib/tftp.c index 8ee947dfd..449a2b3d2 100644 --- a/lib/tftp.c +++ b/lib/tftp.c @@ -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 {