Merge "liblog: printable do not escape tabs" am: 08251c3646 am: 4ad82b5755

am: 318dad7236

* commit '318dad7236181db15579ff51aec68f1fa64fb690':
  liblog: printable do not escape tabs
This commit is contained in:
Mark Salyzyn 2015-11-18 19:18:38 +00:00 committed by android-build-merger
commit cbce6a9a56
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') {