Fix use of 'printf' in gdbtypes.c
authorTom Tromey <tromey@adacore.com>
Mon, 3 Jan 2022 18:04:01 +0000 (11:04 -0700)
committerTom Tromey <tromey@adacore.com>
Mon, 3 Jan 2022 18:04:01 +0000 (11:04 -0700)
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.

gdb/gdbtypes.c

index ab1c9d43318cbb09d2b71b23cca204b3c7c3fcd3..8af96c79e6ca62cb51415e15e146b877a25bcc19 100644 (file)
@@ -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)