commit | 6f686769a554fa460b8a5fdbb7acbaf32446da82 | [log] [tgz] |
---|---|---|
author | Mark Salyzyn <salyzyn@google.com> | Tue Dec 08 14:52:11 2015 -0800 |
committer | Mark Salyzyn <salyzyn@google.com> | Tue Dec 08 15:24:44 2015 -0800 |
tree | 95fbcc661e0636a1d7c05c09f74d607e6a57d2e7 | |
parent | 36fed955df0ce743bbe6f05791010a4583fd1dfa [diff] |
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