From cb213f1c1b0c9682bc5318e6e2ca3017036e4fb4 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Fri, 21 May 2004 09:59:49 +0000 Subject: [PATCH] Got rid of a compiler warning (which was only output by certain compilers). --- exclude.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); } } -- 2.34.1