Merge "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();