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

Commit 67114e63 authored by Mark Salyzyn's avatar Mark Salyzyn Committed by Android (Google) Code Review
Browse files

Merge "liblog: printable do not escape tabs" into mnc-dr2-dev

parents def6c151 bf16b2d9
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') {