From 845ed84d70e0409d5bfad121a2e45bf4dbb5fa84 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 10 Aug 2009 09:24:53 -0700 Subject: [PATCH] Fix a warning about a %d not getting an int (on some platforms). --- exclude.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exclude.c b/exclude.c index 0aa37693..a8e830f1 100644 --- a/exclude.c +++ b/exclude.c @@ -913,7 +913,7 @@ static filter_rule *parse_rule_tok(const char **rulestr_ptr, invalid: rprintf(FERROR, "invalid modifier '%c' at position %d in filter rule: %s\n", - *s, s - (const uchar *)*rulestr_ptr, *rulestr_ptr); + *s, (int)(s - (const uchar *)*rulestr_ptr), *rulestr_ptr); exit_cleanup(RERR_SYNTAX); case '-': if (!BITS_SETnUNSET(rule->rflags, FILTRULE_MERGE_FILE, FILTRULE_NO_PREFIXES)) -- 2.34.1