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:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2016-04-05 15:31:25 +0300
committerVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2016-04-05 17:17:16 +0300
commit28acbc92379c44eb901e07916c0db46e89530330 (patch)
tree18b331786e2be12c63773e6919bf73632f195328 /storage
parent6fcb1e55106ac5b7ad96bfd3039bd9f1f0cdc453 (diff)
More information in case of wrong param passed to GetNodeStatuses
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 d499a9a47e..997ceb08f3 100644
--- a/storage/storage.cpp
+++ b/storage/storage.cpp
@@ -1402,7 +1402,7 @@ void Storage::GetNodeStatuses(TCountryId const & countryId, NodeStatuses & nodeS
ASSERT_THREAD_CHECKER(m_threadChecker, ());
TCountryTreeNode const * const node = m_countries.FindFirst(countryId);
- CHECK(node, ());
+ CHECK(node, (countryId));
StatusAndError statusAndErr = GetNodeStatus(*node);
nodeStatuses.m_status = statusAndErr.status;