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/f-valprint.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/f-valprint.c')
-rw-r--r-- | gdb/f-valprint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/f-valprint.c b/gdb/f-valprint.c index 23331b1..bb0b1d0 100644 --- a/gdb/f-valprint.c +++ b/gdb/f-valprint.c @@ -681,7 +681,7 @@ info_common_command (comname, from_tty) while (entry != NULL) { printf_filtered ("%s = ",SYMBOL_NAME(entry->symbol)); - print_variable_value (entry->symbol,fi,stdout); + print_variable_value (entry->symbol, fi, gdb_stdout); printf_filtered ("\n"); entry = entry->next; } |