From 6f79d3b0a62bb5d555145d4dec9efceac11ddb6b Mon Sep 17 00:00:00 2001 From: Yuri Gorshenin Date: Thu, 14 May 2015 12:15:01 +0300 Subject: [PATCH] Review fixes. --- storage/storage.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/storage/storage.cpp b/storage/storage.cpp index 8fdf3c03ff..47127d72b0 100644 --- a/storage/storage.cpp +++ b/storage/storage.cpp @@ -58,11 +58,14 @@ namespace storage // Don't queue files with 0-size on server (empty or absent). // Downloader has lots of assertions about it. If car routing was - // requested for downloading, try download it first. + // requested for downloading, try to download it first. if ((m_init & TMapOptions::ECarRouting) && - (m_pFile->GetRemoteSize(TMapOptions::ECarRouting) > 0)) { + (m_pFile->GetRemoteSize(TMapOptions::ECarRouting) > 0)) + { m_current = TMapOptions::ECarRouting; - } else { + } + else + { m_init = m_current = m_left = TMapOptions::EMapOnly; } }