Merge "A small follow-up to I8d03bae3264974eff7b790e27c073b0a8758d17a"

main
Ken Wakasa 2013-04-26 15:27:44 +00:00 committed by Android (Google) Code Review
commit d69ad65156
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ inline int BinaryFormat::getFlags(const uint8_t *const dict) {
}
inline bool BinaryFormat::hasBlacklistedOrNotAWordFlag(const int flags) {
return flags & (FLAG_IS_BLACKLISTED | FLAG_IS_NOT_A_WORD);
return (flags & (FLAG_IS_BLACKLISTED | FLAG_IS_NOT_A_WORD)) != 0;
}
inline int BinaryFormat::getHeaderSize(const uint8_t *const dict) {