summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilip Navara <filip.navara@gmail.com>2009-06-23 19:17:30 -0500
committerAnthony Liguori <aliguori@us.ibm.com>2009-06-29 08:52:40 -0500
commit14899cdf3a6e1fc0d72097a43c1c53a1354fbfbf (patch)
treed683ae55441c38442f3dbf0c1c40403ebff10b43 /block/qcow2.c
parentAdd serial number support for virtio_blk (diff)
downloadqemu-kvm-14899cdf3a6e1fc0d72097a43c1c53a1354fbfbf.tar.gz
qemu-kvm-14899cdf3a6e1fc0d72097a43c1c53a1354fbfbf.tar.bz2
qemu-kvm-14899cdf3a6e1fc0d72097a43c1c53a1354fbfbf.zip
Fix QCOW2 debugging code to compile again
Updated to use C99 comments. Signed-off-by: Filip Navara <filip.navara@gmail.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'block/qcow2.c')
-rw-r--r--block/qcow2.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/block/qcow2.c b/block/qcow2.c
index 9acbddf94..20c114b13 100644
--- a/block/qcow2.c
+++ b/block/qcow2.c
@@ -44,10 +44,6 @@
- L2 tables have always a size of one cluster.
*/
-//#define DEBUG_ALLOC
-//#define DEBUG_ALLOC2
-//#define DEBUG_EXT
-
typedef struct {
uint32_t magic;
@@ -251,7 +247,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;