aboutsummaryrefslogtreecommitdiff
path: root/src/fileio.h
diff options
context:
space:
mode:
authorStefan Hoffmann <stefan991@gmail.com>2014-05-10 12:25:45 +0200
committerStefan Hoffmann <stefan991@gmail.com>2014-05-10 12:25:45 +0200
commit6ec5457308ef70f212cbec1b6e3884f426b7cc0f (patch)
tree1ca78f5183d78fb70e7244c218b34c2efc64d6a6 /src/fileio.h
parent1a3ee71de258b416ca6b80f0a9e3b91460df8dc7 (diff)
downloadrneovim-6ec5457308ef70f212cbec1b6e3884f426b7cc0f.tar.gz
rneovim-6ec5457308ef70f212cbec1b6e3884f426b7cc0f.tar.bz2
rneovim-6ec5457308ef70f212cbec1b6e3884f426b7cc0f.zip
remove unused parameter from `buf_store_file_info`
Diffstat (limited to 'src/fileio.h')
-rw-r--r--src/fileio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.h b/src/fileio.h
index 5f67449382..960ba26fa3 100644
--- a/src/fileio.h
+++ b/src/fileio.h
@@ -41,7 +41,7 @@ int vim_rename(char_u *from, char_u *to);
int check_timestamps(int focus);
int buf_check_timestamp(buf_T *buf, int focus);
void buf_reload(buf_T *buf, int orig_mode);
-void buf_store_file_info(buf_T *buf, FileInfo *file_info, char_u *fname);
+void buf_store_file_info(buf_T *buf, FileInfo *file_info);
void write_lnum_adjust(linenr_T offset);
void vim_deltempdir(void);
char_u *vim_tempname(int extra_char);