diff options
author | David 'Digit' Turner <digit@android.com> | 2010-09-22 14:19:28 +0200 |
---|---|---|
committer | David 'Digit' Turner <digit@android.com> | 2010-09-22 14:19:28 +0200 |
commit | 4e024bb4f5c8aa8b07459f7fbd65c35122127fd1 (patch) | |
tree | ccd5835eef17757d3e1c069e391c415c0135023d /memcheck/memcheck.c | |
parent | 1d9873b37d2478554d9d678cd410bd3638c8dab3 (diff) | |
download | external_qemu-4e024bb4f5c8aa8b07459f7fbd65c35122127fd1.zip external_qemu-4e024bb4f5c8aa8b07459f7fbd65c35122127fd1.tar.gz external_qemu-4e024bb4f5c8aa8b07459f7fbd65c35122127fd1.tar.bz2 |
Remove compiler warnings when building the emulator.
This forces -Wall during the build. Note that this patch doesn't
remove all warnings, but most of the remaining ones are from upstream anyway.
Change-Id: I8808d8495e99866e156ce5780d2e3c305eab491f
Diffstat (limited to 'memcheck/memcheck.c')
-rw-r--r-- | memcheck/memcheck.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/memcheck/memcheck.c b/memcheck/memcheck.c index 8e0a1f8..3c8194a 100644 --- a/memcheck/memcheck.c +++ b/memcheck/memcheck.c @@ -138,7 +138,7 @@ av_access_violation(ProcDesc* proc, } memset(align, ' ', set_align); align[set_align] = '\0'; - printf(align); + printf("%s", align); if (inl[index].inlined_in_file == NULL) { printf("inlined to %s in unknown location\n", inl[index].routine_name); @@ -561,7 +561,7 @@ void memcheck_guest_print_str(target_ulong str) { char str_copy[4096]; memcheck_get_guest_string(str_copy, str, sizeof(str_copy)); - printf(str_copy); + printf("%s", str_copy); } /* Validates read operations, detected in __ldx_mmu routine. |