From b1a33a494f7a9510f600cb18e771b35905597be6 Mon Sep 17 00:00:00 2001 From: rubidium Date: Fri, 16 Jan 2009 12:59:47 +0000 Subject: (svn r15104) -Codechange: unify the resolving of the xyz kbytes/megabytes strings. --- src/os2.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/os2.cpp') 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; -- cgit v1.2.3-54-g00ecf