* serial.c (serial_log_command): Fix fputs_unfiltered calls.

This commit is contained in:
Peter Schauer 1997-04-19 11:53:58 +00:00
parent 0daae7e21b
commit 64e6335a65
2 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,7 @@
Sat Apr 19 01:49:37 1997 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) Sat Apr 19 01:49:37 1997 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* serial.c (serial_log_command): Fix fputs_unfiltered calls.
* config/powerpc/tm-ppc-aix4.h, config/rs6000/tm-rs6000-aix4.h * config/powerpc/tm-ppc-aix4.h, config/rs6000/tm-rs6000-aix4.h
(DONT_RELOCATE_SYMFILE_OBJFILE): Removed. (DONT_RELOCATE_SYMFILE_OBJFILE): Removed.
* xcoffsolib.h (struct vmap): Add new members tvma, toffs and dvma, * xcoffsolib.h (struct vmap): Add new members tvma, toffs and dvma,

View File

@ -1,5 +1,5 @@
/* Generic serial interface routines /* Generic serial interface routines
Copyright 1992, 1993, 1996 Free Software Foundation, Inc. Copyright 1992, 1993, 1996, 1997 Free Software Foundation, Inc.
This file is part of GDB. This file is part of GDB.
@ -116,8 +116,8 @@ serial_log_command (cmd)
serial_current_type = 'c'; serial_current_type = 'c';
fputs_unfiltered (serial_logfp, "\nc "); fputs_unfiltered ("\nc ", serial_logfp);
fputs_unfiltered (serial_logfp, cmd); fputs_unfiltered (cmd, serial_logfp);
/* Make sure that the log file is as up-to-date as possible, /* Make sure that the log file is as up-to-date as possible,
in case we are getting ready to dump core or something. */ in case we are getting ready to dump core or something. */