From d24c05991f1e82a948bd1e362e677aad103f9edd Mon Sep 17 00:00:00 2001 From: Jim Kingdon Date: Wed, 4 May 1994 15:24:41 +0000 Subject: * valprint.c (print_longest): Clarify comment about use_local. * printcmd.c, defs.h (print_address_numeric), callers in symmisc.c, symfile.c, stack.c, source.c, remote.c, infcmd.c, cp-valprint.c, core.c, ch-valprint.c, c-valprint.c, breakpoint.c, exec.c: New argument use_local. * source.c (identify_source_line): Use filtered output. Use print_address_numeric. --- gdb/c-valprint.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/c-valprint.c') diff --git a/gdb/c-valprint.c b/gdb/c-valprint.c index 905c313..0eb3133 100644 --- a/gdb/c-valprint.c +++ b/gdb/c-valprint.c @@ -172,7 +172,7 @@ c_val_print (type, valaddr, address, stream, format, deref_ref, recurse, if (addressprint && format != 's') { - print_address_numeric (addr, stream); + print_address_numeric (addr, 1, stream); } /* For a pointer to char or unsigned char, also print the string @@ -255,7 +255,7 @@ c_val_print (type, valaddr, address, stream, format, deref_ref, recurse, fprintf_filtered (stream, "@"); print_address_numeric (extract_address (valaddr, - TARGET_PTR_BIT / HOST_CHAR_BIT), stream); + TARGET_PTR_BIT / HOST_CHAR_BIT), 1, stream); if (deref_ref) fputs_filtered (": ", stream); } -- cgit v1.1