commit | e6a701557dbf0f7e428dc7b46a6b685ca8c4977c | [log] [tgz] |
---|---|---|
author | Arseniy Antonov <arseniy.antonov@intel.com> | Thu Sep 04 18:40:28 2014 +0000 |
committer | Android Git Automerger <android-git-automerger@android.com> | Thu Sep 04 18:40:28 2014 +0000 |
tree | 9aebcb307c43bf8708aecd231d99b053ac84e98e | |
parent | a5a5fb46bc36a8b8ceaece54e2bc20f8473be852 [diff] | |
parent | 3c8e92cebe9f5246f502d9e82d16f9621ac0bed7 [diff] |
am 3c8e92ce: Fix for parenthesis error * commit '3c8e92cebe9f5246f502d9e82d16f9621ac0bed7': Fix for parenthesis error
diff --git a/logd/LogStatistics.cpp b/logd/LogStatistics.cpp index 81c9bab..a2f27c6 100644 --- a/logd/LogStatistics.cpp +++ b/logd/LogStatistics.cpp
@@ -524,7 +524,7 @@ short spaces = 2; log_id_for_each(i) { - if (!logMask & (1 << i)) { + if (!(logMask & (1 << i))) { continue; } oldLength = string.length();