commit | 6dfd90a6056dd9f20ec33b5fe1b8672db0c3d2db | [log] [tgz] |
---|---|---|
author | Mark Salyzyn <salyzyn@google.com> | Thu Nov 19 01:25:14 2015 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Thu Nov 19 01:25:14 2015 +0000 |
tree | 4fde9b09f80846d13ab3bfa85f3ef48f4b02a35b | |
parent | 8ad7e930abc0eb707ffade97684499cee7f13d44 [diff] | |
parent | 18c7f6d9fd6da2dae24fe1932930630086a0a4a9 [diff] |
Merge "liblog: printable do not escape tabs" into mnc-dr2-dev
diff --git a/liblog/logprint.c b/liblog/logprint.c index 9f12c96..ebf9786 100644 --- a/liblog/logprint.c +++ b/liblog/logprint.c
@@ -908,7 +908,7 @@ } 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') {