mirror of
https://github.com/neovim/neovim.git
synced 2025-09-30 15:08:35 +00:00
refactor: remove redundant casts
This commit is contained in:
@@ -3911,13 +3911,13 @@ static int check_mtime(buf_T *buf, FileInfo *file_info)
|
||||
|
||||
static bool time_differs(const FileInfo *file_info, long mtime, long mtime_ns) FUNC_ATTR_CONST
|
||||
{
|
||||
return (long)file_info->stat.st_mtim.tv_nsec != mtime_ns
|
||||
return file_info->stat.st_mtim.tv_nsec != mtime_ns
|
||||
#if defined(__linux__) || defined(MSWIN)
|
||||
// On a FAT filesystem, esp. under Linux, there are only 5 bits to store
|
||||
// the seconds. Since the roundoff is done when flushing the inode, the
|
||||
// time may change unexpectedly by one second!!!
|
||||
|| (long)file_info->stat.st_mtim.tv_sec - mtime > 1
|
||||
|| mtime - (long)file_info->stat.st_mtim.tv_sec > 1;
|
||||
|| file_info->stat.st_mtim.tv_sec - mtime > 1
|
||||
|| mtime - file_info->stat.st_mtim.tv_sec > 1;
|
||||
#else
|
||||
|| (long)file_info->stat.st_mtim.tv_sec != mtime;
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user