Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cbce6a9a authored by Mark Salyzyn's avatar Mark Salyzyn Committed by android-build-merger
Browse files

Merge "liblog: printable do not escape tabs" am: 08251c36 am: 4ad82b57

am: 318dad72

* commit '318dad72':
  liblog: printable do not escape tabs
parents 00be9024 318dad72
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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') {