commit | 8767f52fbfd4f053ce00a978227c95f1d7d323fe | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri Jul 01 17:17:39 2016 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Fri Jul 01 17:17:39 2016 +0200 |
tree | ac0cb33815d6e9d41f9b7a6b4ee4335e6076feaa | |
parent | 4a6c670b844a3ef9aec865a8216eaf363bab8721 [diff] [blame] |
patch 7.4.1975 Problem: On MS-Windows large files (> 2Gbyte) cause problems. Solution: Use "off_T" instead of "off_t". Use "stat_T" instead of "struct stat". Use 64 bit system functions if available. (Ken Takata)
diff --git a/src/quickfix.c b/src/quickfix.c index f71fed3..19801e3 100644 --- a/src/quickfix.c +++ b/src/quickfix.c
@@ -3268,7 +3268,7 @@ static int start = -1; static int off = 0; #ifdef HAVE_LSTAT - struct stat sb; + stat_T sb; #endif if (*p_mef == NUL)