This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 1/6] gdbserver (linux_debug): Remove extraneous \n from output.


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]