Fix misc-macro-parentheses warnings.

Bug: 28705665
Change-Id: I7f0f14a71b9a563bc64168c6515d339870b21380
diff --git a/chromium/plat_support/draw_gl_functor.cpp b/chromium/plat_support/draw_gl_functor.cpp
index c35d961..25f4877 100644
--- a/chromium/plat_support/draw_gl_functor.cpp
+++ b/chromium/plat_support/draw_gl_functor.cpp
@@ -31,7 +31,7 @@
 #include <utils/Log.h>
 
 #define NELEM(x) ((int) (sizeof(x) / sizeof((x)[0])))
-#define COMPILE_ASSERT(expr, err) static const char err[(expr) ? 1 : -1] = "";
+#define COMPILE_ASSERT(expr, err) static const char (err)[(expr) ? 1 : -1] = "";
 
 namespace android {
 namespace {