]> granicus.if.org Git - neomutt/commitdiff
snprintf returns int, not size_t
authorErik Hovland <erik@hovland.org>
Tue, 16 Dec 2008 07:42:13 +0000 (23:42 -0800)
committerErik Hovland <erik@hovland.org>
Tue, 16 Dec 2008 07:42:13 +0000 (23:42 -0800)
bcache.c

index ac07849253d90224cb097729db791786347a159d..0cd9379e15f76956ae82780efefb061dc255eb7d 100644 (file)
--- 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;