aboutsummaryrefslogtreecommitdiffstats
path: root/match.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2005-02-14 22:48:28 +0000
committerWayne Davison <wayned@samba.org>2005-02-14 22:48:28 +0000
commit37a56445764da046aada79adea49715b1f1b3ed0 (patch)
treec843fb3ca76c0596f8b9088da3d6a0ac1f7e2f78 /match.c
parenta1cbe76e2c572e7762d1e5ce4dad85891a8fba6e (diff)
downloadandroid_external_rsync-37a56445764da046aada79adea49715b1f1b3ed0.tar.gz
android_external_rsync-37a56445764da046aada79adea49715b1f1b3ed0.tar.bz2
android_external_rsync-37a56445764da046aada79adea49715b1f1b3ed0.zip
One arg to matched() is supposed to be an int32.
Diffstat (limited to 'match.c')
-rw-r--r--match.c2
1 files changed, 1 insertions, 1 deletions
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;