From: Wayne Davison Date: Mon, 14 Feb 2005 22:48:28 +0000 (+0000) Subject: One arg to matched() is supposed to be an int32. X-Git-Tag: v2.6.4pre1~148 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=37a56445764da046aada79adea49715b1f1b3ed0;p=thirdparty%2Frsync.git One arg to matched() is supposed to be an int32. --- diff --git a/match.c b/match.c index f8c4de69..89e5c529 100644 --- a/match.c +++ b/match.c @@ -102,7 +102,7 @@ static OFF_T last_match; * have only literal data. **/ static void matched(int f, struct sum_struct *s, struct map_struct *buf, - OFF_T offset, int i) + OFF_T offset, int32 i) { int32 n = offset - last_match; /* max value: block_size (int32) */ int32 j;