diff options
Diffstat (limited to 'gdb/f-valprint.c')
-rw-r--r-- | gdb/f-valprint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/f-valprint.c b/gdb/f-valprint.c index a777edd..b2e3271 100644 --- a/gdb/f-valprint.c +++ b/gdb/f-valprint.c @@ -407,7 +407,7 @@ f_val_print (struct type *type, const gdb_byte *valaddr, int embedded_offset, } if (addressprint && format != 's') - deprecated_print_address_numeric (addr, 1, stream); + fputs_filtered (paddress (addr), stream); /* For a pointer to char or unsigned char, also print the string pointed to, unless pointer is null. */ @@ -431,7 +431,7 @@ f_val_print (struct type *type, const gdb_byte *valaddr, int embedded_offset, CORE_ADDR addr = extract_typed_address (valaddr + embedded_offset, type); fprintf_filtered (stream, "@"); - deprecated_print_address_numeric (addr, 1, stream); + fputs_filtered (paddress (addr), stream); if (deref_ref) fputs_filtered (": ", stream); } |