mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 08:23:29 +00:00
[Linux] Fix narrowing conversion error in 32-bit builds.
This commit is contained in:
parent
7c472e655f
commit
80b39cd1bd
1 changed files with 1 additions and 1 deletions
|
@ -524,7 +524,7 @@ String DirAccessUnix::get_filesystem_type() const {
|
|||
if (statfs(current_dir.utf8().get_data(), &fs) != 0) {
|
||||
return "";
|
||||
}
|
||||
switch (fs.f_type) {
|
||||
switch (static_cast<unsigned int>(fs.f_type)) {
|
||||
case 0x0000adf5:
|
||||
return "ADFS";
|
||||
case 0x0000adff:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue