summaryrefslogtreecommitdiff
path: root/tcg
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2008-05-23 11:58:32 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2008-05-23 11:58:32 +0000
commit24bf7b3a1d48d0f2e9960bfc9d7ec758353e078e (patch)
tree376b1f84650a58bfe805d73b3ed028b228acce57 /tcg
parented44146780c5ce9c58137549073798e08d053a92 (diff)
downloadqemu-24bf7b3a1d48d0f2e9960bfc9d7ec758353e078e.tar.gz
compilation fix
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4540 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tcg')
-rw-r--r--tcg/tcg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tcg/tcg.c b/tcg/tcg.c
index 31962a9e58..a58802f23b 100644
--- a/tcg/tcg.c
+++ b/tcg/tcg.c
@@ -2033,9 +2033,9 @@ void tcg_dump_info(FILE *f,
}
}
#else
-void dump_tcg_info(FILE *f,
+void tcg_dump_info(FILE *f,
int (*cpu_fprintf)(FILE *f, const char *fmt, ...))
{
- cpu_fprintf("[TCG profiler not compiled]\n");
+ cpu_fprintf(f, "[TCG profiler not compiled]\n");
}
#endif