summaryrefslogtreecommitdiff
path: root/gdb/complaints.c
diff options
context:
space:
mode:
authorJason Molenda <jsm@bugshack.cygnus.com>1999-09-28 21:55:21 +0000
committerJason Molenda <jsm@bugshack.cygnus.com>1999-09-28 21:55:21 +0000
commitc804ebc6d614890872b82978a0fef56dd8f77537 (patch)
tree0f7a7c0fd623babd70e332a27e9608eeb97eea00 /gdb/complaints.c
parent78bdd6a4c9dc0f87410d89504862768c3556db31 (diff)
downloadgdb-c804ebc6d614890872b82978a0fef56dd8f77537.tar.gz
import gdb-1999-09-28 snapshot
Diffstat (limited to 'gdb/complaints.c')
-rw-r--r--gdb/complaints.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/gdb/complaints.c b/gdb/complaints.c
index 5903a4e47a5..c22d213d602 100644
--- a/gdb/complaints.c
+++ b/gdb/complaints.c
@@ -84,18 +84,18 @@ complain (struct complaint *complaint,...)
/* Isolated messages, must be self-explanatory. */
case 0:
begin_line ();
- puts_filtered ("During symbol reading, ");
+ fputs_filtered ("During symbol reading, ", gdb_stderr);
wrap_here ("");
- vprintf_filtered (complaint->message, args);
- puts_filtered (".\n");
+ vfprintf_filtered (gdb_stderr, complaint->message, args);
+ fputs_filtered (".\n", gdb_stderr);
break;
/* First of a series, without `set verbose'. */
case 1:
begin_line ();
- puts_filtered ("During symbol reading...");
- vprintf_filtered (complaint->message, args);
- puts_filtered ("...");
+ fputs_filtered ("During symbol reading...", gdb_stderr);
+ vfprintf_filtered (gdb_stderr, complaint->message, args);
+ fputs_filtered ("...", gdb_stderr);
wrap_here ("");
complaint_series++;
break;
@@ -104,14 +104,14 @@ complain (struct complaint *complaint,...)
(We'll already have produced a "Reading in symbols for XXX..."
message and will clean up at the end with a newline.) */
default:
- vprintf_filtered (complaint->message, args);
- puts_filtered ("...");
+ vfprintf_filtered (gdb_stderr, complaint->message, args);
+ fputs_filtered ("...", gdb_stderr);
wrap_here ("");
}
/* If GDB dumps core, we'd like to see the complaints first. Presumably
GDB will not be sending so many complaints that this becomes a
performance hog. */
- gdb_flush (gdb_stdout);
+ gdb_flush (gdb_stderr);
va_end (args);
}