From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MJ6Kg-00047K-8e for qemu-devel@nongnu.org; Tue, 23 Jun 2009 09:46:42 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MJ6Kd-00044Z-NW for qemu-devel@nongnu.org; Tue, 23 Jun 2009 09:46:40 -0400 Received: from [199.232.76.173] (port=55130 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MJ6Kd-00044D-Gn for qemu-devel@nongnu.org; Tue, 23 Jun 2009 09:46:39 -0400 Received: from a40-prg1-8-129.static.adsl.vol.cz ([88.146.54.129]:27340 helo=FilipNavara-PC) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1MJ6Kc-0004qK-RO for qemu-devel@nongnu.org; Tue, 23 Jun 2009 09:46:39 -0400 From: Filip Navara Sender: Filip Navara MIME-Version: 1.0 Content-Type: text/plain; boundary=WC_MAIL_PaRt_BoUnDaRy_05151998 Message-Id: Subject: [Qemu-devel] [PATCH 1/2] Fix QCOW2 debugging code to compile with DEBUG_ALLOC defined. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Tue, 23 Jun 2009 13:46:42 -0000 To: qemu-devel@nongnu.org Signed-off-by: Filip Navara --- block/qcow2.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/block/qcow2.c b/block/qcow2.c index 9acbddf..fdcd20b 100644 --- a/block/qcow2.c +++ b/block/qcow2.c @@ -251,7 +251,7 @@ static int qcow_open(BlockDriverState *bs, const char *filename, int flags) goto fail; #ifdef DEBUG_ALLOC - check_refcounts(bs); + qcow2_check_refcounts(bs); #endif return 0; -- 1.6.3.msysgit.0