diff options
| author | 2017-05-02 16:55:33 -0700 | |
|---|---|---|
| committer | 2017-05-02 16:55:33 -0700 | |
| commit | ac53e73bba9b311bc92e40a58ad98c5e65d49d17 (patch) | |
| tree | 66d2a681e69312d642b90a7468f5b21f0ab4b83f | |
| parent | 044963e1dd0479035b6e5f2c6bd618bde7143710 (diff) | |
Remove newline from "capturing trace..."
Turns out this broke a test.
Bug: 37906221
Test: Compiled
Change-Id: I750a2831114071de2627da08de033cbe7924b51b
| -rw-r--r-- | cmds/atrace/atrace.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/atrace/atrace.cpp b/cmds/atrace/atrace.cpp index 84820a6a08..ed53af15fe 100644 --- a/cmds/atrace/atrace.cpp +++ b/cmds/atrace/atrace.cpp @@ -1234,7 +1234,7 @@ int main(int argc, char **argv) if (ok && traceStart) { if (!traceStream) { - printf("capturing trace...\n"); + printf("capturing trace..."); fflush(stdout); } |