Merge "liblog: printable do not escape tabs"

am: 08251c3646

* commit '08251c3646ac8516ddc7a2ccd3fd35e74b10b088':
  liblog: printable do not escape tabs
This commit is contained in:
Mark Salyzyn 2015-11-18 18:50:56 +00:00 committed by android-build-merger
commit 4ad82b5755
1 changed files with 1 additions and 1 deletions

View File

@ -908,7 +908,7 @@ static size_t convertPrintable(char *p, const char *message, size_t messageLen)
} else if (*message == '\b') {
strcpy(buf, "\\b");
} else if (*message == '\t') {
strcpy(buf, "\\t");
strcpy(buf, "\t"); // Do not escape tabs
} else if (*message == '\v') {
strcpy(buf, "\\v");
} else if (*message == '\f') {