]> granicus.if.org Git - neomutt/commitdiff
minor change from EGE.
authorThomas Roessler <roessler@does-not-exist.org>
Tue, 27 Jun 2000 22:28:01 +0000 (22:28 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Tue, 27 Jun 2000 22:28:01 +0000 (22:28 +0000)
sendlib.c

index a3e6c4acc7e6baf86fcd275f757754c2e6b6a8ae..e54c16f68fd4587f3299a62a8563c6d5a50f46a0 100644 (file)
--- 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, ':');