Minor code style fixes.

This commit is contained in:
vng 2012-11-06 19:46:39 +03:00 committed by Alex Zolotarev
parent 4fc1a89b93
commit 051df2870e

View file

@ -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);
}
}