* c-lang.c (c_printstr): Print "" to stream (like all the other

output from this function), not gdb_stdout.
This commit is contained in:
Jim Kingdon
1993-11-05 03:01:47 +00:00
parent 71da0d0be6
commit 5576858065
2 changed files with 4 additions and 1 deletions

View File

@@ -1,5 +1,8 @@
Thu Nov 4 08:27:24 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* c-lang.c (c_printstr): Print "" to stream (like all the other
output from this function), not gdb_stdout.
* dbxread.c (process_one_symbol): Do relocate 'S' symbols by
the text offset (revert 12 Oct 93 change).

View File

@@ -116,7 +116,7 @@ c_printstr (stream, string, length, force_ellipses)
if (length == 0)
{
fputs_filtered ("\"\"", gdb_stdout);
fputs_filtered ("\"\"", stream);
return;
}