diff options
author | Stefan Hoffmann <stefan991@gmail.com> | 2014-08-27 20:04:03 +0200 |
---|---|---|
committer | Stefan Hoffmann <stefan991@gmail.com> | 2014-08-31 15:42:19 +0200 |
commit | 8a66f4f2453be3385c65d298609c282eeab08af8 (patch) | |
tree | 6d1ba79e0a995c36f68c8a734e5ea226451f2121 /src/nvim/os | |
parent | 6e3dce144a849166a02a3633f005d8d61d1eb19d (diff) | |
download | rneovim-8a66f4f2453be3385c65d298609c282eeab08af8.tar.gz rneovim-8a66f4f2453be3385c65d298609c282eeab08af8.tar.bz2 rneovim-8a66f4f2453be3385c65d298609c282eeab08af8.zip |
fileinfo: rename os_file_info_get_inode
Diffstat (limited to 'src/nvim/os')
-rw-r--r-- | src/nvim/os/fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os/fs.c b/src/nvim/os/fs.c index 45c08d23c1..63ea0ed963 100644 --- a/src/nvim/os/fs.c +++ b/src/nvim/os/fs.c @@ -389,7 +389,7 @@ void os_fileinfo_id(const FileInfo *file_info, FileID *file_id) /// @deprecated Use `FileID` instead, this function is only needed in memline.c /// @param file_info Pointer to the `FileInfo` /// @return the inode number -uint64_t os_file_info_get_inode(const FileInfo *file_info) +uint64_t os_fileinfo_inode(const FileInfo *file_info) { return file_info->stat.st_ino; } |