Fix use of 'printf' in gdbtypes.c
An earlier patch of mine, commit 64b7cc50
("Remove
gdb_print_host_address") inadvertently changed a function in
gdbtypes.c to use printf rather than printf_filtered. This patch
fixes the problem.
This commit is contained in:
parent
b896e87d76
commit
23bb7876f0
1 changed files with 1 additions and 1 deletions
|
@ -5312,7 +5312,7 @@ recursive_dump_type (struct type *type, int spaces)
|
|||
}
|
||||
printf_filtered ("\n");
|
||||
}
|
||||
printf ("%s\n", host_address_to_string (type->fields ()));
|
||||
printf_filtered ("%s\n", host_address_to_string (type->fields ()));
|
||||
for (idx = 0; idx < type->num_fields (); idx++)
|
||||
{
|
||||
if (type->code () == TYPE_CODE_ENUM)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue