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>2015-09-25 18:23:26 +0300
committervng <viktor.govako@gmail.com>2015-09-25 18:23:26 +0300
commitbe305b23f0f85d53473da30e80d460adaeadad7a (patch)
treee5b337704aa09a06b5a4adaaa85834e0da1e2c5d /android/jni/com/mapswithme/core/logging.cpp
parent5fc4681e5449c00ba25cfc0882cac95155d76a33 (diff)
Review fixes.
Diffstat (limited to 'android/jni/com/mapswithme/core/logging.cpp')
-rw-r--r--android/jni/com/mapswithme/core/logging.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/jni/com/mapswithme/core/logging.cpp b/android/jni/com/mapswithme/core/logging.cpp
index bcda11d230..58d488e1e0 100644
--- a/android/jni/com/mapswithme/core/logging.cpp
+++ b/android/jni/com/mapswithme/core/logging.cpp
@@ -38,7 +38,7 @@ void AndroidMessage(LogLevel level, SrcPoint const & src, string const & s)
void AndroidLogMessage(LogLevel level, SrcPoint const & src, string const & s)
{
AndroidMessage(level, src, s);
- CHECK(level < g_LogAbortLevel, ("Abort. Log level is too serious", level));
+ CHECK_LESS(level, g_LogAbortLevel, ("Abort. Log level is too serious", level));
}
void AndroidAssertMessage(SrcPoint const & src, string const & s)