target-i386: Fix compiler warning
authorStefan Weil <weil@mail.berlios.de>
Thu, 1 Apr 2010 18:03:30 +0000 (20:03 +0200)
committerAurelien Jarno <aurelien@aurel32.net>
Thu, 8 Apr 2010 19:42:26 +0000 (21:42 +0200)
commitf00c6d587235e601e95b9bd23a60512762aa5a16
tree4c8d00144769f375a707429aa2a1a1bcdd2af912
parent002f8e91e7a5f4868207747339c16c7d8396d2a6
target-i386: Fix compiler warning

With argument checking for cpu_fprintf, gcc throws this warning:

  CC    i386-softmmu/helper.o
cc1: warnings being treated as errors
/qemu/ar7/target-i386/helper.c: In function ‘cpu_x86_dump_seg_cache’:
/qemu/ar7/target-i386/helper.c:220: error: format not a string literal and no format arguments

The code is correct, but current gcc versions don't detect this.
Therefore 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>
target-i386/helper.c