From: Erik Hovland Date: Tue, 16 Dec 2008 21:06:59 +0000 (-0800) Subject: Match variable type to getch return type X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d08929363244b2200c862488b02d0645c7051980;p=neomutt Match variable type to getch return type --- diff --git a/ChangeLog b/ChangeLog index 9363bd2b7..648a63382 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,8 @@ -2008-12-16 12:49 -0800 Erik Hovland (758aaca73c65) +2008-12-16 13:00 -0800 Erik Hovland (26216d118339) + + * alias.c: Fix fread rc check + + * hash.c: Remove redundant int clamping * smime.c: Remove check that always succeeds diff --git a/parse.c b/parse.c index c19e8bc4c..17b24ca12 100644 --- a/parse.c +++ b/parse.c @@ -41,7 +41,7 @@ char *mutt_read_rfc822_line (FILE *f, char *line, size_t *linelen) { char *buf = line; - char ch; + int ch; size_t offset = 0; FOREVER