summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Brown2012-06-08 16:21:51 -0500
committerJeff Brown2012-06-08 16:21:51 -0500
commit9cec175c66100d9edbb1054f3f2977a5c3f80af2 (patch)
treea09395bfcc2673fa76c71255b734c59ef07049f1
parent053b865412d1982ad1dc0e840898d82527deeb99 (diff)
downloadplatform-system-core-9cec175c66100d9edbb1054f3f2977a5c3f80af2.tar.gz
platform-system-core-9cec175c66100d9edbb1054f3f2977a5c3f80af2.tar.xz
platform-system-core-9cec175c66100d9edbb1054f3f2977a5c3f80af2.zip
Remove a stray newline in the backtrace output.
Bug: 6615693 Change-Id: I1ac1746286afb77c3f5c4042c4592333ebb08a51
-rw-r--r--debuggerd/backtrace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debuggerd/backtrace.c b/debuggerd/backtrace.c
index 2149a6733..62f7f325c 100644
--- a/debuggerd/backtrace.c
+++ b/debuggerd/backtrace.c
@@ -54,7 +54,7 @@ static void dump_process_header(log_t* log, pid_t pid) {
54 _LOG(log, false, "\n\n----- pid %d at %s -----\n", pid, timestr); 54 _LOG(log, false, "\n\n----- pid %d at %s -----\n", pid, timestr);
55 55
56 if (procname) { 56 if (procname) {
57 _LOG(log, false, "\nCmd line: %s\n", procname); 57 _LOG(log, false, "Cmd line: %s\n", procname);
58 } 58 }
59} 59}
60 60