diff options
author | David Taylor <taylor@redhat.com> | 1999-01-14 23:40:25 +0000 |
---|---|---|
committer | David Taylor <taylor@redhat.com> | 1999-01-14 23:40:25 +0000 |
commit | 1206c6599d41da0ced4f0422f4b0081bf73bdf3b (patch) | |
tree | 091a9659ab047ab65426859d6ce0c191d95aa22a /gdb/remote-udi.c | |
parent | dab43dfdcd6648aa8791175b5566791949baafdc (diff) | |
download | gdb-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.c | 4 |
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; |