aboutsummaryrefslogtreecommitdiffstats
path: root/flist.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-12-12 20:42:06 +0000
committerWayne Davison <wayned@samba.org>2006-12-12 20:42:06 +0000
commit6aef83c97d85046ccc4004ba368e4a615e0f8dd6 (patch)
tree08f66e236a8d0165d5114b6cf873600ec7aa41fa /flist.c
parent225aeca346b5d59f5058e900966f68d9f076c3d5 (diff)
downloadandroid_external_rsync-6aef83c97d85046ccc4004ba368e4a615e0f8dd6.tar.gz
android_external_rsync-6aef83c97d85046ccc4004ba368e4a615e0f8dd6.tar.bz2
android_external_rsync-6aef83c97d85046ccc4004ba368e4a615e0f8dd6.zip
Cast FILE_STRUCT_LEN & EXTRA_LEN to int for rprintf().
Diffstat (limited to 'flist.c')
-rw-r--r--flist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/flist.c b/flist.c
index 6497d34f..35e55156 100644
--- a/flist.c
+++ b/flist.c
@@ -90,7 +90,7 @@ void init_flist(void)
{
if (verbose > 4) {
rprintf(FINFO, "FILE_STRUCT_LEN=%d, EXTRA_LEN=%d\n",
- FILE_STRUCT_LEN, EXTRA_LEN);
+ (int)FILE_STRUCT_LEN, (int)EXTRA_LEN);
}
checksum_len = protocol_version < 21 ? 2 : MD4_SUM_LENGTH;
}