From 1e9beacb485fb005a09241ff81e3bd2fa26107aa Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Mon, 14 Jun 2010 16:09:58 +0000 Subject: * cp-valprint.c (cp_print_static_field): Members of dont_print_stat_array_obstack are of type "struct type *". (_initialize_cp_valprint): Likewise. --- gdb/cp-valprint.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/cp-valprint.c') diff --git a/gdb/cp-valprint.c b/gdb/cp-valprint.c index 209a752..57b8dab 100644 --- a/gdb/cp-valprint.c +++ b/gdb/cp-valprint.c @@ -615,7 +615,7 @@ cp_print_static_field (struct type *type, first_dont_print = (struct type **) obstack_base (&dont_print_stat_array_obstack); i = obstack_object_size (&dont_print_stat_array_obstack) - / sizeof (CORE_ADDR); + / sizeof (struct type *); while (--i >= 0) { @@ -764,7 +764,7 @@ Show printing of object's derived type based on vtable info."), NULL, show_objectprint, &setprintlist, &showprintlist); - obstack_begin (&dont_print_stat_array_obstack, 32 * sizeof (CORE_ADDR)); + obstack_begin (&dont_print_stat_array_obstack, 32 * sizeof (struct type *)); obstack_begin (&dont_print_statmem_obstack, 32 * sizeof (CORE_ADDR)); obstack_begin (&dont_print_vb_obstack, 32 * sizeof (struct type *)); } -- cgit v1.1