fileinfo: rename os_file_info_get_inode

This commit is contained in:
Stefan Hoffmann
2014-08-27 20:04:03 +02:00
parent 6e3dce144a
commit 8a66f4f245
3 changed files with 6 additions and 6 deletions

View File

@@ -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;
}