From: Thomas Roessler Date: Tue, 27 Jun 2000 22:28:01 +0000 (+0000) Subject: minor change from EGE. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b7d35e6570d209b53eced36efa08ad3cbabcb1fc;p=neomutt minor change from EGE. --- diff --git a/sendlib.c b/sendlib.c index a3e6c4acc..e54c16f68 100644 --- a/sendlib.c +++ b/sendlib.c @@ -784,8 +784,8 @@ static size_t convert_file_from_to (FILE *file, char *fcode; char **tcode; const char *c, *c1; - size_t n; - int ncodes, i, ret, cn; + size_t n, ret; + int ncodes, i, cn; /* Count the tocodes */ ncodes = 0; @@ -811,8 +811,7 @@ static size_t convert_file_from_to (FILE *file, } /* Try each fromcode in turn */ - ret = -1; - cn = -1; + ret = (size_t)(-1); for (c = fromcodes; c; c = c1 ? c1 + 1 : 0) { c1 = strchr (c, ':');