]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
Got rid of a compiler warning (which was only output by certain
authorWayne Davison <wayned@samba.org>
Fri, 21 May 2004 09:59:49 +0000 (09:59 +0000)
committerWayne Davison <wayned@samba.org>
Fri, 21 May 2004 09:59:49 +0000 (09:59 +0000)
compilers).

exclude.c

index 49adcff61aa6a9c96417b137ebc0bc46779b4e39..9a06395b2c740f3ad33ab6234b0956a58d8bf7c3 100644 (file)
--- 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");
                }
        }