From: Stefan Weil Date: Fri, 9 Apr 2010 20:49:53 +0000 (+0200) Subject: sparc: Fix compiler warning (fprintf format string) X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~8151 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=452f58eb4966de0d957e9314383cf490fcb69064;p=sdk%2Femulator%2Fqemu.git sparc: Fix compiler warning (fprintf format string) When argument checking is enabled, gcc throws this error: error: format not a string literal and no format arguments The patch rewrites the statement to satisfy the compiler. Signed-off-by: Stefan Weil Signed-off-by: Aurelien Jarno --- diff --git a/sparc-dis.c b/sparc-dis.c index 83a12ae..611e74f 100644 --- a/sparc-dis.c +++ b/sparc-dis.c @@ -2778,7 +2778,7 @@ print_insn_sparc (bfd_vma memaddr, disassemble_info *info) /* Can't do simple format if source and dest are different. */ continue; - (*info->fprintf_func) (stream, opcode->name); + (*info->fprintf_func) (stream, "%s", opcode->name); { const char *s;