This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[PATCH 1/6] gdbserver (linux_debug): Remove extraneous \n from output.
- From: Doug Evans <dje at google dot com>
- To: gdb-patches at sourceware dot org
- Date: Tue, 17 Dec 2013 13:40:21 -0800
- Subject: [PATCH 1/6] gdbserver (linux_debug): Remove extraneous \n from output.
- Authentication-results: sourceware.org; auth=none
Hi.
The blank lines make reading the output hard because one expects them
to separate major sections not trivial or random ones.
2013-12-17 Doug Evans <dje@google.com>
* nat/linux-waitpid.c (linux_debug): Remove extraneous \n from output.
---
gdb/nat/linux-waitpid.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/gdb/nat/linux-waitpid.c b/gdb/nat/linux-waitpid.c
index 2debea4..9a42ffa 100644
--- a/gdb/nat/linux-waitpid.c
+++ b/gdb/nat/linux-waitpid.c
@@ -40,7 +40,6 @@ linux_debug (const char *format, ...)
va_list args;
va_start (args, format);
vfprintf (stderr, format, args);
- fprintf (stderr, "\n");
va_end (args);
}
#else
--
1.8.5.1