This is the mail archive of the gdb-patches@sources.redhat.com 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] Fix stray puts_filtered in i387-tdep.c


I missed this somehow in an earlier patch.  Fixed now.

Mark

Index: ChangeLog
from  Mark Kettenis  <kettenis@gnu.org>

	* i387-tdep.c (i387_print_float_info): Call fputs_filtered instead
	of puts_filtered.

Index: i387-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/i387-tdep.c,v
retrieving revision 1.25
diff -u -p -r1.25 i387-tdep.c
--- i387-tdep.c 3 Nov 2002 12:32:42 -0000 1.25
+++ i387-tdep.c 3 Nov 2002 13:03:17 -0000
@@ -388,7 +388,7 @@ i387_print_float_info (struct gdbarch *g
       fputs_filtered ("\n", file);
     }
 
-  puts_filtered ("\n");
+  fputs_filtered ("\n", file);
 
   print_i387_status_word (fstat, file);
   print_i387_control_word (fctrl, file);


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