diff options
author | Stefan Hoffmann <stefan991@gmail.com> | 2014-05-10 12:25:45 +0200 |
---|---|---|
committer | Stefan Hoffmann <stefan991@gmail.com> | 2014-05-10 12:25:45 +0200 |
commit | 6ec5457308ef70f212cbec1b6e3884f426b7cc0f (patch) | |
tree | 1ca78f5183d78fb70e7244c218b34c2efc64d6a6 /src/memline.c | |
parent | 1a3ee71de258b416ca6b80f0a9e3b91460df8dc7 (diff) | |
download | rneovim-6ec5457308ef70f212cbec1b6e3884f426b7cc0f.tar.gz rneovim-6ec5457308ef70f212cbec1b6e3884f426b7cc0f.tar.bz2 rneovim-6ec5457308ef70f212cbec1b6e3884f426b7cc0f.zip |
remove unused parameter from `buf_store_file_info`
Diffstat (limited to 'src/memline.c')
-rw-r--r-- | src/memline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/memline.c b/src/memline.c index bf2743fe1d..a01506756f 100644 --- a/src/memline.c +++ b/src/memline.c @@ -865,7 +865,7 @@ static void set_b0_fname(ZERO_BL *b0p, buf_T *buf) #ifdef CHECK_INODE long_to_char((long)file_info.stat.st_ino, b0p->b0_ino); #endif - buf_store_file_info(buf, &file_info, buf->b_ffname); + buf_store_file_info(buf, &file_info); buf->b_mtime_read = buf->b_mtime; } else { long_to_char(0L, b0p->b0_mtime); |