summaryrefslogtreecommitdiffstats
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-05-31 21:59:46 +0200
committerBram Moolenaar <Bram@vim.org>2010-05-31 21:59:46 +0200
commit914703bee2422e2797576e06145380389096ec09 (patch)
treec0d46af3b55b2ddcc5aa9453b0c9b575dd56070a /src/structs.h
parent20a825ae0f90099249924740a5113e6ed413bc66 (diff)
Correct use of long instead of off_t for file size. (James Vega)
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h
index 2ec02f3db7..927aa06db4 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -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) */