mirror of
https://github.com/qemu/qemu.git
synced 2024-11-28 22:33:36 +08:00
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 <weil@mail.berlios.de> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
c8160fab31
commit
452f58eb49
@ -2778,7 +2778,7 @@ print_insn_sparc (bfd_vma memaddr, disassemble_info *info)
|
|||||||
/* Can't do simple format if source and dest are different. */
|
/* Can't do simple format if source and dest are different. */
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
(*info->fprintf_func) (stream, opcode->name);
|
(*info->fprintf_func) (stream, "%s", opcode->name);
|
||||||
|
|
||||||
{
|
{
|
||||||
const char *s;
|
const char *s;
|
||||||
|
Loading…
Reference in New Issue
Block a user