diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-23 11:58:32 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-23 11:58:32 +0000 |
commit | 24bf7b3a1d48d0f2e9960bfc9d7ec758353e078e (patch) | |
tree | 376b1f84650a58bfe805d73b3ed028b228acce57 /tcg | |
parent | ed44146780c5ce9c58137549073798e08d053a92 (diff) |
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |