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

Commit bf16b2d9 authored by Mark Salyzyn's avatar Mark Salyzyn
Browse files

liblog: printable do not escape tabs



(cherry pick from commit 65d5ca20)

Signed-off-by: default avatarMark Salyzyn <salyzyn@google.com>
Bug: 25755153
Change-Id: I99324e751db0e1ed1eb00820e82b176b6d789249
parent b10978e5
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') {