From: Wayne Davison Date: Fri, 21 May 2004 09:59:49 +0000 (+0000) Subject: Got rid of a compiler warning (which was only output by certain X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/cb213f1c1b0c9682bc5318e6e2ca3017036e4fb4 Got rid of a compiler warning (which was only output by certain compilers). --- diff --git a/exclude.c b/exclude.c index 49adcff6..9a06395b 100644 --- a/exclude.c +++ b/exclude.c @@ -311,7 +311,7 @@ void add_exclude(struct exclude_list_struct *listp, const char *pattern, if (verbose > 2) { rprintf(FINFO, "[%s] add_exclude(%.*s, %s%sclude)\n", - who_am_i(), pat_len, cp, listp->debug_type, + who_am_i(), (int)pat_len, cp, listp->debug_type, mflags & MATCHFLG_INCLUDE ? "in" : "ex"); } }