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-06 20:46:39 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:46:39 +0300
commit051df2870ed75c71ed3eaf153e8c1d7947079f10 (patch)
tree382a555630d42a988ec104c904006341ca2fb957 /platform/chunks_download_strategy.cpp
parent4fc1a89b93e051039f6f087216bee515111240c1 (diff)
Minor code style fixes.
Diffstat (limited to 'platform/chunks_download_strategy.cpp')
-rw-r--r--platform/chunks_download_strategy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/chunks_download_strategy.cpp b/platform/chunks_download_strategy.cpp
index 68f0de9d47..14670b649f 100644
--- a/platform/chunks_download_strategy.cpp
+++ b/platform/chunks_download_strategy.cpp
@@ -32,7 +32,7 @@ ChunksDownloadStrategy::GetChunk(RangeT const & range)
else
{
LOG(LERROR, ("Downloader error. Invalid chunk range: ", range));
- return pair<ChunkT *, int>(reinterpret_cast<ChunkT *>(0), -1);
+ return pair<ChunkT *, int>(static_cast<ChunkT *>(0), -1);
}
}