diff options
author | Stefan Weil <weil@mail.berlios.de> | 2010-11-15 21:00:48 +0100 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-12-04 20:51:19 +0000 |
commit | edcdd562baff02bb8de974c46a2b984b7d5b0da9 (patch) | |
tree | 8a7b66ec436d15bf94be6a97416fb32d8f1582aa /darwin-user/machload.c | |
parent | ab9de3692e34dc874ce44c7905590ef98445ce33 (diff) | |
download | qemu-edcdd562baff02bb8de974c46a2b984b7d5b0da9.zip |
darwin-user: Use GCC_FMT_ATTR (format checking)
The redundant forward declaration of qerror in machload.c
is removed because it should be taken from qemu.h.
Please note that this patch is untested because
I have no matching environment to compile it.
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 'darwin-user/machload.c')
-rw-r--r-- | darwin-user/machload.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/darwin-user/machload.c b/darwin-user/machload.c index 4bb5c7276a..3bc3b65559 100644 --- a/darwin-user/machload.c +++ b/darwin-user/machload.c @@ -82,7 +82,7 @@ void *macho_text_sect = 0; int macho_offset = 0; int load_object(const char *filename, struct target_pt_regs * regs, void ** mh); -void qerror(const char *format, ...); + #ifdef TARGET_I386 typedef struct mach_i386_thread_state { unsigned int eax; |