base: Fix narrowing casting for Musl

This commit is contained in:
klzgrad 2023-01-11 19:40:46 +08:00
parent 5b5e0a7237
commit fb1b274103

View File

@ -62,7 +62,7 @@ bool IsStatsZeroIfUnlimited(const base::FilePath& path) {
if (HANDLE_EINTR(statfs(path.value().c_str(), &stats)) != 0)
return false;
switch (stats.f_type) {
switch (static_cast<int>(stats.f_type)) {
case TMPFS_MAGIC:
case static_cast<int>(HUGETLBFS_MAGIC):
case static_cast<int>(RAMFS_MAGIC):