FcCacheFindByStat(): fix checking of nanoseconds field.
This commit is contained in:
parent
6cc99d6a82
commit
5a46d572c0
|
@ -704,7 +704,7 @@ FcCacheFindByStat (struct stat *cache_stat)
|
|||
s->cache_mtime == cache_stat->st_mtime)
|
||||
{
|
||||
#ifdef HAVE_STRUCT_STAT_ST_MTIM
|
||||
if (s->cache_mtime != cache_stat->st_mtim.tv_nsec)
|
||||
if (s->cache_mtime_nano != cache_stat->st_mtim.tv_nsec)
|
||||
continue;
|
||||
#endif
|
||||
FcRefInc (&s->ref);
|
||||
|
|
Loading…
Reference in New Issue