Pass gdb_stderr instead of stderr.
In serial.c, fix call to gdb_fclose() - pass gdb_file** not gdb_file*
This commit is contained in:
Andrew Cagney 1999-01-18 01:24:06 +00:00
parent 8bdec905f1
commit c634a08ff8
5 changed files with 25 additions and 18 deletions

View file

@ -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;
}