versioner: fix darwin build.
Use struct stat::st_mtime instead of the underlying st_mtim, which is called something different on Darwin. Test: mma on linux, darwin Change-Id: I2695a6c83ebb7d08ec56b1355e0f4bc0993a0acb
This commit is contained in:
parent
3f76dadf15
commit
b8a3ae4bcb
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ static void addDirectoryToVFS(InMemoryFileSystem* vfs, const std::string& path)
|
|||
errx(1, "failed to map header '%s'", file_path);
|
||||
}
|
||||
|
||||
if (!vfs->addFile(file_path, ent->fts_statp->st_mtim.tv_sec, std::move(buffer_opt.get()))) {
|
||||
if (!vfs->addFile(file_path, ent->fts_statp->st_mtime, std::move(buffer_opt.get()))) {
|
||||
errx(1, "failed to add file '%s'", file_path);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue