aboutsummaryrefslogtreecommitdiff
path: root/gdb/remote-udi.c
diff options
context:
space:
mode:
authorDavid Taylor <taylor@redhat.com>1999-01-14 23:40:25 +0000
committerDavid Taylor <taylor@redhat.com>1999-01-14 23:40:25 +0000
commit1206c6599d41da0ced4f0422f4b0081bf73bdf3b (patch)
tree091a9659ab047ab65426859d6ce0c191d95aa22a /gdb/remote-udi.c
parentdab43dfdcd6648aa8791175b5566791949baafdc (diff)
downloadgdb-1206c6599d41da0ced4f0422f4b0081bf73bdf3b.zip
gdb-1206c6599d41da0ced4f0422f4b0081bf73bdf3b.tar.gz
gdb-1206c6599d41da0ced4f0422f4b0081bf73bdf3b.tar.bz2
fix stream arguments to fprintf_unfiltered, gdb_flush, print_address_numeric,
and fwrite.
Diffstat (limited to 'gdb/remote-udi.c')
-rw-r--r--gdb/remote-udi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-udi.c b/gdb/remote-udi.c
index bbfe0bd..da982ce 100644
--- a/gdb/remote-udi.c
+++ b/gdb/remote-udi.c
@@ -453,13 +453,13 @@ udi_wait (pid, status)
a whole bunch of output (more than SBUF_MAX, I would
guess). It doesn't seem to happen with the simulator. */
warning ("UDIGetStdout() failed in udi_wait");
- fwrite (sbuf, 1, CountDone, gdb_stdout);
+ fwrite (sbuf, 1, CountDone, stdout);
gdb_flush(gdb_stdout);
continue;
case UDIStderrReady:
UDIGetStderr (sbuf, (UDISizeT)SBUF_MAX, &CountDone);
- fwrite (sbuf, 1, CountDone, gdb_stderr);
+ fwrite (sbuf, 1, CountDone, stderr);
gdb_flush(gdb_stderr);
continue;