Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvng <viktor.govako@gmail.com>2012-11-16 21:11:39 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:47:00 +0300
commit7fca6a746e5e38b3c684b822984b4ee1b246c4d1 (patch)
tree029baeab823811e825cfde618f5df78ff0547ba5 /platform/platform_win.cpp
parent106b0b58168d456e25510e4aa6fb01eeecb36631 (diff)
[android] Fix bug with correct storage path for downloading.
Diffstat (limited to 'platform/platform_win.cpp')
-rw-r--r--platform/platform_win.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/platform_win.cpp b/platform/platform_win.cpp
index ac57d3ad2e..399caf370a 100644
--- a/platform/platform_win.cpp
+++ b/platform/platform_win.cpp
@@ -122,7 +122,7 @@ void Platform::RunAsync(TFunctor const & fn, Priority p)
fn();
}
-Platform::TStorageStatus Platform::GetWritableStorageStatus(uint64_t neededSize)
+Platform::TStorageStatus Platform::GetWritableStorageStatus(uint64_t neededSize) const
{
ULARGE_INTEGER freeSpace;
if (0 == ::GetDiskFreeSpaceExA(m_writableDir.c_str(), &freeSpace, NULL, NULL))