aboutsummaryrefslogtreecommitdiff
path: root/gdb/f-lang.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/f-lang.c')
-rw-r--r--gdb/f-lang.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/f-lang.c b/gdb/f-lang.c
index 1590ac8..4ee66d5 100644
--- a/gdb/f-lang.c
+++ b/gdb/f-lang.c
@@ -144,7 +144,7 @@ f_emit_char (c, stream, quoter)
static void
f_printchar (c, stream)
int c;
- FILE *stream;
+ GDB_FILE *stream;
{
fputs_filtered ("'", stream);
LA_EMIT_CHAR (c, stream, '\'');
@@ -160,7 +160,7 @@ f_printchar (c, stream)
static void
f_printstr (stream, string, length, width, force_ellipses)
- FILE *stream;
+ GDB_FILE *stream;
char *string;
unsigned int length;
int width;
@@ -176,7 +176,7 @@ f_printstr (stream, string, length, width, force_ellipses)
if (length == 0)
{
- fputs_filtered ("''", stdout);
+ fputs_filtered ("''", gdb_stdout);
return;
}