diff options
author | Stefan Hoffmann <stefan991@gmail.com> | 2014-08-27 20:09:39 +0200 |
---|---|---|
committer | Stefan Hoffmann <stefan991@gmail.com> | 2014-08-31 15:43:40 +0200 |
commit | 4e43095ab20d2b03b206f1b019570873af35c68c (patch) | |
tree | ec0cd41f68e249ad465572c64e2f6cdf3a4d5a2c /src/nvim/os | |
parent | 8a66f4f2453be3385c65d298609c282eeab08af8 (diff) | |
download | rneovim-4e43095ab20d2b03b206f1b019570873af35c68c.tar.gz rneovim-4e43095ab20d2b03b206f1b019570873af35c68c.tar.bz2 rneovim-4e43095ab20d2b03b206f1b019570873af35c68c.zip |
fileid: rename os_get_file_id
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 63ea0ed963..2e51551b7a 100644 --- a/src/nvim/os/fs.c +++ b/src/nvim/os/fs.c @@ -426,7 +426,7 @@ uint64_t os_fileinfo_blocksize(const FileInfo *file_info) /// @param path Path to the file. /// @param[out] file_info Pointer to a `FileID` to fill in. /// @return `true` on sucess, `false` for failure. -bool os_get_file_id(const char *path, FileID *file_id) +bool os_fileid(const char *path, FileID *file_id) { uv_stat_t statbuf; if (os_stat(path, &statbuf)) { |