commit | 7fd87c0bf125c4f1a18116cdebbe2c065be8574e | [log] [tgz] |
---|---|---|
author | Mark Salyzyn <salyzyn@google.com> | Thu Sep 04 22:54:59 2014 +0000 |
committer | Android Git Automerger <android-git-automerger@android.com> | Thu Sep 04 22:54:59 2014 +0000 |
tree | 9f8302a9bd04e570e5a0ea626b5e240663ddd69f | |
parent | 8e10bfd9cc543fdec8fec26c320f649f72b15e3b [diff] | |
parent | 1ac35b099636399eab8f16d94b6210ec366f9c99 [diff] |
am 1ac35b09: Merge "Fix for parenthesis error" * commit '1ac35b099636399eab8f16d94b6210ec366f9c99': 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();