commit | 88cee437337ab37273195d15e97bc9f0cf8fea7a | [log] [tgz] |
---|---|---|
author | Chih-Hung Hsieh <chh@google.com> | Wed May 18 15:53:15 2016 -0700 |
committer | Chih-Hung Hsieh <chh@google.com> | Wed May 18 15:53:15 2016 -0700 |
tree | 8c6be6afa50e2f9def4edd1e29a05b78655f41c3 | |
parent | d91139c6283a06f5eb0a46523e29ab38cb08f186 [diff] [blame] |
Fix misc-macro-parentheses warnings in adb, debuggerd, libbacktrace. Bug: 28705665 Change-Id: I469b2a882f6d1f399bfc22c75a26da245991fc33
diff --git a/adb_trace.h b/adb_trace.h index d50f947..5206a99 100644 --- a/adb_trace.h +++ b/adb_trace.h
@@ -41,7 +41,7 @@ }; #define VLOG_IS_ON(TAG) \ - ((adb_trace_mask & (1 << TAG)) != 0) + ((adb_trace_mask & (1 << (TAG))) != 0) #define VLOG(TAG) \ if (LIKELY(!VLOG_IS_ON(TAG))) \