From 6e2d864edf5ef4d75e2fec061f4cd247b4d315be Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Mon, 15 Nov 2010 19:39:43 +0100 Subject: *-dis: Replace fprintf_ftype by fprintf_function (format checking) This patch adds more printf format checking. Additional modifications were needed for this code change: * alpha-dis.c: The local definition of MAX conflicts with a previous definition from osdep.h, so add an #undef. * dis-asm.h: Add include for fprintf_function (qemu-common.h). The standard (now redundant) includes are removed. * mis-dis.c: The definition of ARRAY_SIZE is no longer needed and must be removed (conflict with previous definition from qemu-common.h). * sh4-dis.c: Remove some unneeded forward declarations. Cc: Blue Swirl Signed-off-by: Stefan Weil Signed-off-by: Blue Swirl --- m68k-dis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'm68k-dis.c') diff --git a/m68k-dis.c b/m68k-dis.c index d93943e458..04f837a31d 100644 --- a/m68k-dis.c +++ b/m68k-dis.c @@ -1732,7 +1732,7 @@ match_insn_m68k (bfd_vma memaddr, const char *d; bfd_byte *buffer = priv->the_buffer; - fprintf_ftype save_printer = info->fprintf_func; + fprintf_function save_printer = info->fprintf_func; void (* save_print_address) (bfd_vma, struct disassemble_info *) = info->print_address_func; -- cgit v1.2.1