From: Wayne Davison Date: Tue, 12 Dec 2006 20:42:06 +0000 (+0000) Subject: Cast FILE_STRUCT_LEN & EXTRA_LEN to int for rprintf(). X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/6aef83c97d85046ccc4004ba368e4a615e0f8dd6 Cast FILE_STRUCT_LEN & EXTRA_LEN to int for rprintf(). --- 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; }