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:
authorIlya Grechuhin <i.grechuhin@gmail.com>2016-09-15 15:39:46 +0300
committerIlya Grechuhin <i.grechuhin@gmail.com>2016-09-15 15:39:46 +0300
commit3cc282c4bebfd7234239cda6a5bba10b02bc9df8 (patch)
tree8dade19e0cbc8cb8b2a492103440b20c69128dc0 /storage
parentc5ac91f9818ef8e73a6540de7f46709b0d88873a (diff)
Fixed incorrect type.
Diffstat (limited to 'storage')
-rw-r--r--storage/storage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/storage.cpp b/storage/storage.cpp
index 67c15376c2..82358cb482 100644
--- a/storage/storage.cpp
+++ b/storage/storage.cpp
@@ -1489,7 +1489,7 @@ MapFilesDownloader::TProgress Storage::CalculateProgress(
}
else if (m_justDownloaded.count(d) != 0)
{
- size_t const localCountryFileSz = GetCountryFile(d).GetRemoteSize(MapOptions::Map);
+ TMwmSize const localCountryFileSz = GetCountryFile(d).GetRemoteSize(MapOptions::Map);
localAndRemoteBytes.first += localCountryFileSz;
localAndRemoteBytes.second += localCountryFileSz;
}