gdb: remove some stray newlines in debug output
authorAndrew Burgess <andrew.burgess@embecosm.com>
Mon, 16 Aug 2021 16:15:31 +0000 (17:15 +0100)
committerAndrew Burgess <andrew.burgess@embecosm.com>
Thu, 26 Aug 2021 10:29:11 +0000 (11:29 +0100)
I spotted a couple of stray newlines that were left at the end of
debug message during conversion to the new debug output scheme.  These
messages are part of the 'set debug lin-lwp 1' output.

gdb/linux-nat.c

index 211e447dc6f4c7eda207bc876ab25b597185f6cf..e9433b2206bc857584550f9c92fd4f2cf55a614b 100644 (file)
@@ -3799,7 +3799,7 @@ static struct
   /* Close FD and clear it to -1.  */
   void close ()
   {
-    linux_nat_debug_printf ("closing fd %d for /proc/%d/task/%ld/mem\n",
+    linux_nat_debug_printf ("closing fd %d for /proc/%d/task/%ld/mem",
                            fd, ptid.pid (), ptid.lwp ());
     ::close (fd);
     fd = -1;
@@ -3859,7 +3859,7 @@ linux_proc_xfer_memory_partial_pid (ptid_t ptid,
        }
       last_proc_mem_file.ptid = ptid;
 
-      linux_nat_debug_printf ("opened fd %d for %s\n",
+      linux_nat_debug_printf ("opened fd %d for %s",
                              last_proc_mem_file.fd, filename);
     }