summaryrefslogtreecommitdiff
path: root/tcg/tcg.c
diff options
context:
space:
mode:
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2008-12-14 17:29:58 +0000
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2008-12-14 17:29:58 +0000
commit3e9a474e3d7cca635f821a14a6d8d38405243892 (patch)
treee2e4126097749ab29f0c8da72e623e1d56b35145 /tcg/tcg.c
parentc241f1f4a556bfa0e59eebba97a9fef021b5f50b (diff)
downloadqemu-3e9a474e3d7cca635f821a14a6d8d38405243892.tar.gz
tcg: kill two warnings
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6029 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tcg/tcg.c')
-rw-r--r--tcg/tcg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/tcg.c b/tcg/tcg.c
index f5399a1914..35ca05a4ef 100644
--- a/tcg/tcg.c
+++ b/tcg/tcg.c
@@ -886,7 +886,7 @@ void tcg_dump_ops(TCGContext *s, FILE *outfile)
val = args[1];
th = tcg_find_helper(s, val);
if (th) {
- fprintf(outfile, th->name);
+ fprintf(outfile, "%s", th->name);
} else {
if (c == INDEX_op_movi_i32)
fprintf(outfile, "0x%x", (uint32_t)val);