From 8570883412c390dba12ab127fc79079b964242b4 Mon Sep 17 00:00:00 2001 From: Gunter Knauf Date: Fri, 24 Jul 2009 22:20:22 +0000 Subject: changes to silent compiler warnings with 64bit systems. --- lib/tftp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/tftp.c') diff --git a/lib/tftp.c b/lib/tftp.c index 87e513e98..0a1dc59bd 100644 --- a/lib/tftp.c +++ b/lib/tftp.c @@ -1035,7 +1035,7 @@ static CURLcode tftp_do(struct connectdata *conn, bool *done) case TFTP_EVENT_OACK: code = tftp_parse_option_ack(state, (const char *)state->rpacket.data+2, - state->rbytes-2); + (int)state->rbytes-2); if(code) return code; break; -- cgit v1.2.3