* 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

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