gdb: remove use of vfprintf_filtered
authorAndrew Burgess <aburgess@redhat.com>
Mon, 4 Apr 2022 12:41:49 +0000 (13:41 +0100)
committerAndrew Burgess <aburgess@redhat.com>
Mon, 4 Apr 2022 12:41:49 +0000 (13:41 +0100)
Commit:

  commit 60a3da00bd5407f07d64dff82a4dae98230dfaac
  Date:   Sat Jan 22 11:38:18 2022 +0000

      objdump/opcodes: add syntax highlighting to disassembler output

Introduced a new use of vfprintf_filtered, which has been deprecated.
This commit replaces this with gdb_vprintf instead.

gdb/disasm.c

index 8b6d9db7e8436a93558e09ea76024eeb472f756f..f2df5ef7bc5b7c3e07f13cf8eda85c09abbcf4e7 100644 (file)
@@ -187,7 +187,7 @@ gdb_disassembler::dis_asm_styled_fprintf (void *stream,
   va_list args;
 
   va_start (args, format);
-  vfprintf_filtered ((struct ui_file *) stream, format, args);
+  gdb_vprintf ((struct ui_file *) stream, format, args);
   va_end (args);
   /* Something non -ve.  */
   return 0;