From: Brendan Cully Date: Mon, 25 Jul 2005 04:31:51 +0000 (+0000) Subject: Suppress a printf format warning X-Git-Tag: mutt-1-5-10-rel~157 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=46cde65f80f47cfd2d43dda376e9a0ba5472216b;p=mutt Suppress a printf format warning --- diff --git a/muttlib.c b/muttlib.c index 07c81bef..25c224cf 100644 --- a/muttlib.c +++ b/muttlib.c @@ -1563,7 +1563,7 @@ int mutt_match_spam_list (const char *s, SPAM_LIST *l, char *text, int x) if (regexec (l->rx->rx, s, (size_t) l->nmatch, (regmatch_t *) pmatch, (int) 0) == 0) { dprint (5, (debugfile, "mutt_match_spam_list: %s matches %s\n", s, l->rx->pattern)); - dprint (5, (debugfile, "mutt_match_spam_list: %d subs\n", l->rx->rx->re_nsub)); + dprint (5, (debugfile, "mutt_match_spam_list: %d subs\n", (int)l->rx->rx->re_nsub)); /* Copy template into text, with substitutions. */ for (p = l->template; *p;)