commit | a54cdaaf6e0f48c2f3d9fb062571b8a1f235530f | [log] [tgz] |
---|---|---|
author | Mark Salyzyn <salyzyn@google.com> | Wed Nov 18 18:42:55 2015 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Nov 18 18:42:55 2015 +0000 |
tree | c56c3991acf359bc2c52d158ddcaf375f3819926 | |
parent | 8d5bfbc5475d5373d19ff8eaaf81c7e2a09a54d1 [diff] | |
parent | 37c9b9f33f56985eb2a942b2792bf21f958ed989 [diff] |
Merge "liblog: printable do not escape tabs"
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') {