diff options
author | Stefan Weil <weil@mail.berlios.de> | 2010-10-22 23:03:33 +0200 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-10-30 08:01:59 +0000 |
commit | 9a78eead0c74333a394c0f7bbfc4423ac746fcd5 (patch) | |
tree | bd22dfd10bbea7a77ccf166cf2549d0e0d0806d4 /cpus.h | |
parent | 055403b2a72729497fb58e0c6293547e767679d3 (diff) |
target-xxx: Use fprintf_function (format checking)
fprintf_function uses format checking with GCC_FMT_ATTR.
Format errors were fixed in
* target-i386/helper.c
* target-mips/translate.c
* target-ppc/translate.c
Cc: Blue Swirl <blauwirbel@gmail.com>
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'cpus.h')
-rw-r--r-- | cpus.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -16,7 +16,6 @@ void vm_state_notify(int running, int reason); bool cpu_exec_all(void); void set_numa_modes(void); void set_cpu_log(const char *optarg); -void list_cpus(FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...), - const char *optarg); +void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg); #endif |