diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-07-01 17:17:39 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-07-01 17:17:39 +0200 |
commit | 8767f52fbfd4f053ce00a978227c95f1d7d323fe (patch) | |
tree | ac0cb33815d6e9d41f9b7a6b4ee4335e6076feaa /src/proto/memline.pro | |
parent | 4a6c670b844a3ef9aec865a8216eaf363bab8721 (diff) | |
download | vim-8767f52fbfd4f053ce00a978227c95f1d7d323fe.zip |
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)
Diffstat (limited to 'src/proto/memline.pro')
-rw-r--r-- | src/proto/memline.pro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proto/memline.pro b/src/proto/memline.pro index bf5c60261..bddb902f4 100644 --- a/src/proto/memline.pro +++ b/src/proto/memline.pro @@ -30,8 +30,8 @@ int resolve_symlink(char_u *fname, char_u *buf); char_u *makeswapname(char_u *fname, char_u *ffname, buf_T *buf, char_u *dir_name); char_u *get_file_in_dir(char_u *fname, char_u *dname); void ml_setflags(buf_T *buf); -char_u *ml_encrypt_data(memfile_T *mfp, char_u *data, off_t offset, unsigned size); -void ml_decrypt_data(memfile_T *mfp, char_u *data, off_t offset, unsigned size); +char_u *ml_encrypt_data(memfile_T *mfp, char_u *data, off_T offset, unsigned size); +void ml_decrypt_data(memfile_T *mfp, char_u *data, off_T offset, unsigned size); long ml_find_line_or_offset(buf_T *buf, linenr_T lnum, long *offp); void goto_byte(long cnt); /* vim: set ft=c : */ |