diff options
author | David Crosby <dave@dafyddcrosby.com> | 2015-07-26 04:46:36 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2015-08-11 12:59:27 +0000 |
commit | 6eb786644218c2d12e3ab635e35958757ab9bdfb (patch) | |
tree | 23da8e48a31d52e16af77217b014684ba600a6b2 /mailcap.c | |
parent | Check return value of rename (diff) | |
download | w3m-6eb786644218c2d12e3ab635e35958757ab9bdfb.tar.gz w3m-6eb786644218c2d12e3ab635e35958757ab9bdfb.zip |
Adjust len to size_t
Diffstat (limited to 'mailcap.c')
-rw-r--r-- | mailcap.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |