Fixed: Compilation

--HG--
branch : develop
This commit is contained in:
kervala 2016-01-04 16:14:30 +01:00
parent 4d5be82f19
commit 0fe6ec67ba

View file

@ -1057,7 +1057,7 @@ uint64 CSystemInfo::availableHDSpace (const string &filename)
struct statfs stfs; struct statfs stfs;
if (::stat(path.c_str(), &stst) == -1) return 0; if (::stat(path.c_str(), &stst) == -1) return 0;
if (::statfs(c_str(), &stfs) == -1) return 0; if (::statfs(path.c_str(), &stfs) == -1) return 0;
return (uint64)(stfs.f_bavail * stst.st_blksize); return (uint64)(stfs.f_bavail * stst.st_blksize);
#else #else