0
0
mirror of https://github.com/vim/vim.git synced 2025-09-28 04:24:06 -04:00

Correct use of long instead of off_t for file size. (James Vega)

This commit is contained in:
Bram Moolenaar
2010-05-31 21:59:46 +02:00
parent 20a825ae0f
commit 914703bee2
11 changed files with 334 additions and 119 deletions

View File

@@ -1200,7 +1200,7 @@ struct file_buffer
long b_mtime; /* last change time of original file */
long b_mtime_read; /* last change time when reading */
size_t b_orig_size; /* size of original file in bytes */
off_t b_orig_size; /* size of original file in bytes */
int b_orig_mode; /* mode of original file */
pos_T b_namedm[NMARKS]; /* current named marks (mark.c) */