diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-05-31 21:59:46 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-05-31 21:59:46 +0200 |
commit | 914703bee2422e2797576e06145380389096ec09 (patch) | |
tree | c0d46af3b55b2ddcc5aa9453b0c9b575dd56070a /src/proto | |
parent | 20a825ae0f90099249924740a5113e6ed413bc66 (diff) | |
download | vim-914703bee2422e2797576e06145380389096ec09.zip |
Correct use of long instead of off_t for file size. (James Vega)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/fileio.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/fileio.pro b/src/proto/fileio.pro index 32e304552..75285dfef 100644 --- a/src/proto/fileio.pro +++ b/src/proto/fileio.pro @@ -9,7 +9,7 @@ char_u *read_string_decrypt __ARGS((buf_T *buf, FILE *fd, int len)); int check_file_readonly __ARGS((char_u *fname, int perm)); int buf_write __ARGS((buf_T *buf, char_u *fname, char_u *sfname, linenr_T start, linenr_T end, exarg_T *eap, int append, int forceit, int reset_changed, int filtering)); void msg_add_fname __ARGS((buf_T *buf, char_u *fname)); -void msg_add_lines __ARGS((int insert_space, long lnum, long nchars)); +void msg_add_lines __ARGS((int insert_space, long lnum, off_t nchars)); char_u *shorten_fname1 __ARGS((char_u *full_path)); char_u *shorten_fname __ARGS((char_u *full_path, char_u *dir_name)); void shorten_fnames __ARGS((int force)); |