logd: build breakage

OPEN_BRACKET_SPACE comparison always false

Change-Id: I1ff4288b4b79a49702727d3a8b8c8f179f500951
This commit is contained in:
Mark Salyzyn 2015-06-08 14:51:30 -07:00
parent 42951a8be7
commit 3e21de2915
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ static char *is_timestamp(char *s) {
#define LESS_THAN_SIG SIGNATURE_MASK
#define OPEN_BRACKET_SIG ((SIGNATURE_MASK << 1) & SIGNATURE_MASK)
// space is one more than <digit> of 9
#define OPEN_BRACKET_SPACE (OPEN_BRACKET_SIG | 10)
#define OPEN_BRACKET_SPACE ((char)(OPEN_BRACKET_SIG | 10))
char *log_strtok_r(char *s, char **last) {
if (!s) {