From: Daniel Stenberg Date: Tue, 6 Dec 2005 07:47:37 +0000 (+0000) Subject: Yang Tse: fixed compiler warning X-Git-Tag: curl-7_15_1~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=59b6cb9e917f9547a14f1bd465374a542c5b5a7e;p=curl Yang Tse: fixed compiler warning --- diff --git a/tests/server/tftpd.c b/tests/server/tftpd.c index cf85623af..e4fc83683 100644 --- a/tests/server/tftpd.c +++ b/tests/server/tftpd.c @@ -228,7 +228,7 @@ static void read_ahead(struct testcase *test, /* decrease amount, advance pointer */ test->rcount -= copy_n; test->rptr += copy_n; - b->counter = copy_n; + b->counter = (int)copy_n; return; }