diff options
author | Andrew Cagney <cagney@redhat.com> | 1999-01-18 01:24:06 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1999-01-18 01:24:06 +0000 |
commit | c634a08ff819b95a924c7b69d5208d56ac66b3f6 (patch) | |
tree | a3cae486ac320e65ab853c656090f9360ef04630 /gdb/target.c | |
parent | 8bdec905f1b143803103ce60255f04fdb916233c (diff) | |
download | gdb-c634a08ff819b95a924c7b69d5208d56ac66b3f6.zip gdb-c634a08ff819b95a924c7b69d5208d56ac66b3f6.tar.gz gdb-c634a08ff819b95a924c7b69d5208d56ac66b3f6.tar.bz2 |
HPMERGE:
Pass gdb_stderr instead of stderr.
In serial.c, fix call to gdb_fclose() - pass gdb_file** not gdb_file*
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/target.c b/gdb/target.c index a13bbc3..4d9f3e9 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -2487,7 +2487,7 @@ debug_to_query (type, req, resp, siz) retval = debug_target.to_query (type, req, resp, siz); - fprintf_unfiltered (stderr, "target_query (%c, %s, %s, %d) = %d\n", type, req, resp, *siz, retval); + fprintf_unfiltered (gdb_stderr, "target_query (%c, %s, %s, %d) = %d\n", type, req, resp, *siz, retval); return retval; } |