From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JzVuw-0007ul-P6 for qemu-devel@nongnu.org; Fri, 23 May 2008 07:58:38 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JzVuv-0007uR-GL for qemu-devel@nongnu.org; Fri, 23 May 2008 07:58:37 -0400 Received: from [199.232.76.173] (port=52407 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JzVuv-0007uO-Bn for qemu-devel@nongnu.org; Fri, 23 May 2008 07:58:37 -0400 Received: from savannah.gnu.org ([199.232.41.3]:38091 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JzVuu-0007tI-K7 for qemu-devel@nongnu.org; Fri, 23 May 2008 07:58:37 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1JzVuq-00010G-M5 for qemu-devel@nongnu.org; Fri, 23 May 2008 11:58:32 +0000 Received: from bellard by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1JzVuq-00010C-GF for qemu-devel@nongnu.org; Fri, 23 May 2008 11:58:32 +0000 MIME-Version: 1.0 Errors-To: bellard Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Fabrice Bellard Message-Id: Date: Fri, 23 May 2008 11:58:32 +0000 Subject: [Qemu-devel] [4540] compilation fix Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 4540 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4540 Author: bellard Date: 2008-05-23 11:58:32 +0000 (Fri, 23 May 2008) Log Message: ----------- compilation fix Modified Paths: -------------- trunk/tcg/tcg.c Modified: trunk/tcg/tcg.c =================================================================== --- trunk/tcg/tcg.c 2008-05-23 11:56:45 UTC (rev 4539) +++ trunk/tcg/tcg.c 2008-05-23 11:58:32 UTC (rev 4540) @@ -2033,9 +2033,9 @@ } } #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