commit | c61348e83fd4eed8b999fe5b7cdfb4caf90bf3fd | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Apr 28 22:20:03 2016 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Apr 28 22:20:03 2016 +0200 |
tree | 973264c18258283ca72dd5f4a6fd3c5e30087ca3 | |
parent | 283ee8b3a07b9da18f6c73f35cf465b83f96406a [diff] [blame] |
patch 7.4.1797 Problem: Warning from Windows 64 bit compiler. Solution: Change int to size_t. (Mike Williams)
diff --git a/src/term.c b/src/term.c index 61200d2..cc9d7ad 100644 --- a/src/term.c +++ b/src/term.c
@@ -6174,7 +6174,7 @@ while (!feof(fd)) { - int len; + size_t len; int pos; (void)fgets(line, LINE_LEN, fd);