aboutsummaryrefslogtreecommitdiffstats
path: root/mailcap.c
diff options
context:
space:
mode:
authorDavid Crosby <dave@dafyddcrosby.com>2015-07-26 04:46:36 +0000
committerTatsuya Kinoshita <tats@debian.org>2015-08-11 12:59:27 +0000
commit6eb786644218c2d12e3ab635e35958757ab9bdfb (patch)
tree23da8e48a31d52e16af77217b014684ba600a6b2 /mailcap.c
parentCheck return value of rename (diff)
downloadw3m-6eb786644218c2d12e3ab635e35958757ab9bdfb.tar.gz
w3m-6eb786644218c2d12e3ab635e35958757ab9bdfb.zip
Adjust len to size_t
Diffstat (limited to 'mailcap.c')
-rw-r--r--mailcap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mailcap.c b/mailcap.c
index c0461df..f0c6242 100644
--- a/mailcap.c
+++ b/mailcap.c
@@ -72,7 +72,7 @@ searchMailcap(struct mailcap *table, char *type)
}
static int
-matchMailcapAttr(char *p, char *attr, int len, Str *value)
+matchMailcapAttr(char *p, char *attr, size_t len, Str *value)
{
int quoted;
char *q = NULL;