src/fccache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 5a46d572c06f1904ea45b4a24a75fb508c8c9f07 Author: Matthieu Herrb <matthieu@xxxxxxxx> Date: Mon Jul 9 19:07:12 2018 +0200 FcCacheFindByStat(): fix checking of nanoseconds field. diff --git a/src/fccache.c b/src/fccache.c index 9831a1f..c6201e4 100644 --- a/src/fccache.c +++ b/src/fccache.c @@ -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); _______________________________________________ Fontconfig mailing list Fontconfig@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/fontconfig