summaryrefslogtreecommitdiff
path: root/src/os2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/os2.cpp')
-rw-r--r--src/os2.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/os2.cpp b/src/os2.cpp
index e15b96a5b..a44b27f2f 100644
--- a/src/os2.cpp
+++ b/src/os2.cpp
@@ -87,7 +87,7 @@ void FiosGetDrives()
#endif
}
-bool FiosGetDiskFreeSpace(const char *path, uint32 *tot)
+bool FiosGetDiskFreeSpace(const char *path, uint64 *tot)
{
#ifndef __INNOTEK_LIBC__
struct diskfree_t free;
@@ -100,14 +100,14 @@ bool FiosGetDiskFreeSpace(const char *path, uint32 *tot)
return false;
#else
- uint32 free = 0;
+ uint64 free = 0;
#ifdef HAS_STATVFS
{
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;