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]

remote-utils.c: Add missing space


Hello,

 This change should be obvious, but it modifies run-time behaviour, so I'm 
asking just in case it hits somebody doing something strange.

2007-03-30  Chris Dearman  <chris@mips.com>

	* remote-utils.c (gr_files_info): Add missing space when printing
	baud rate.

 OK to apply?

  Maciej

12226-1.diff
Index: binutils-quilt/src/gdb/remote-utils.c
===================================================================
--- binutils-quilt.orig/src/gdb/remote-utils.c	2007-03-30 12:23:08.000000000 +0100
+++ binutils-quilt/src/gdb/remote-utils.c	2007-03-30 12:23:38.000000000 +0100
@@ -437,7 +437,7 @@
 #else
   printf_filtered ("\tAttached to %s", sr_get_device ());
   if (baud_rate != -1)
-    printf_filtered ("at %d baud", baud_rate);
+    printf_filtered (" at %d baud", baud_rate);
   printf_filtered ("\n");
 #endif
 


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