summaryrefslogtreecommitdiff
path: root/src/unix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/unix.cpp')
-rw-r--r--src/unix.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/unix.cpp b/src/unix.cpp
index ea86c16c8..8212b61b2 100644
--- a/src/unix.cpp
+++ b/src/unix.cpp
@@ -63,9 +63,9 @@ void FiosGetDrives()
return;
}
-bool FiosGetDiskFreeSpace(const char *path, uint32 *tot)
+bool FiosGetDiskFreeSpace(const char *path, uint64 *tot)
{
- uint32 free = 0;
+ uint64 free = 0;
#ifdef HAS_STATVFS
# ifdef __APPLE__
@@ -76,7 +76,7 @@ bool FiosGetDiskFreeSpace(const char *path, uint32 *tot)
struct statvfs s;
if (statvfs(path, &s) != 0) return false;
- free = (uint64)s.f_frsize * s.f_bavail >> 20;
+ free = (uint64)s.f_frsize * s.f_bavail;
}
#endif
if (tot != NULL) *tot = free;