From: Erik Hovland Date: Tue, 16 Dec 2008 07:42:13 +0000 (-0800) Subject: snprintf returns int, not size_t X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=55332c17c44a8e17e107c0cc741b29670bc54610;p=mutt snprintf returns int, not size_t --- diff --git a/bcache.c b/bcache.c index ac078492..0cd9379e 100644 --- a/bcache.c +++ b/bcache.c @@ -43,7 +43,7 @@ static int bcache_path(ACCOUNT *account, const char *mailbox, { char host[STRING]; ciss_url_t url; - size_t len; + int len; if (!account || !MessageCachedir || !*MessageCachedir || !dst || !dstlen) return -1;