From 3cc282c4bebfd7234239cda6a5bba10b02bc9df8 Mon Sep 17 00:00:00 2001 From: Ilya Grechuhin Date: Thu, 15 Sep 2016 15:39:46 +0300 Subject: [PATCH] Fixed incorrect type. --- storage/storage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }