From 65d5ca2001440fba95d819fe41a07e8014cf30bc Mon Sep 17 00:00:00 2001 From: Mark Salyzyn Date: Wed, 18 Nov 2015 09:58:00 -0800 Subject: [PATCH] liblog: printable do not escape tabs Signed-off-by: Mark Salyzyn Bug: 25755153 Change-Id: I99324e751db0e1ed1eb00820e82b176b6d789249 --- liblog/logprint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liblog/logprint.c b/liblog/logprint.c index 9f12c96db..ebf9786aa 100644 --- a/liblog/logprint.c +++ b/liblog/logprint.c @@ -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') {