liblog: Build Problem, BOOLEAN

Checks with BOOLEAN_FALSE and BOOLEAN_TRUE should be made
against an unsigned char.

Bug: 26029733
Change-Id: I405f45a4d6ddae1b060b0e8da9c1585298abe8bd
diff --git a/liblog/log_is_loggable.c b/liblog/log_is_loggable.c
index 854ecfa..b4711d2 100644
--- a/liblog/log_is_loggable.c
+++ b/liblog/log_is_loggable.c
@@ -42,7 +42,7 @@
 struct cache {
     const prop_info *pinfo;
     uint32_t serial;
-    char c;
+    unsigned char c;
 };
 
 #define BOOLEAN_TRUE 0xFF