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

Commit 318dad72 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

* commit '4ad82b57':
  liblog: printable do not escape tabs
parents 01f7f6fb 4ad82b57
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') {