From 24bf7b3a1d48d0f2e9960bfc9d7ec758353e078e Mon Sep 17 00:00:00 2001 From: bellard Date: Fri, 23 May 2008 11:58:32 +0000 Subject: [PATCH] compilation fix git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4540 c046a42c-6fe2-441c-8c8c-71466251a162 --- tcg/tcg.c | 4 ++-- 1 file 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