]> git.wh0rd.org Git - nano.git/commitdiff
in parse_rcfile(), change variable i from an int to a size_t, for
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 26 May 2006 13:38:49 +0000 (13:38 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 26 May 2006 13:38:49 +0000 (13:38 +0000)
consistency

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3575 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/rcfile.c

index 20c87eeca5bed3c7ce84ec2d5a48104524d39288..091455b8bc4c23ecefab24548a52c9ee4565683c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -260,6 +260,8 @@ CVS code -
   parse_rcfile()
        - Properly generate an error if we've read in a syntax without
          any associated color commands. (DLR)
+       - Change variable i from an int to a size_t, for consistency.
+         (DLR)
   do_rcfile()
        - Check for the rcfile's being a directory or device file and
          reject it if it is, for consistency with file handling
index 68c1d3e1233dc165a1eaa81fbd6ac94eaff02a6d..5996b33465bb4523eb34eaf596fe503d24e450d6 100644 (file)
@@ -618,7 +618,8 @@ void parse_rcfile(FILE *rcstream
 
     while ((len = getline(&buf, &n, rcstream)) > 0) {
        char *ptr, *keyword, *option;
-       int set = 0, i;
+       int set = 0;
+       size_t i;
 
        /* Ignore the newline. */
        buf[len - 1] = '\0';