From 14899cdf3a6e1fc0d72097a43c1c53a1354fbfbf Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Tue, 23 Jun 2009 19:17:30 -0500 Subject: Fix QCOW2 debugging code to compile again Updated to use C99 comments. Signed-off-by: Filip Navara Signed-off-by: Anthony Liguori --- block/qcow2-snapshot.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'block/qcow2-snapshot.c') diff --git a/block/qcow2-snapshot.c b/block/qcow2-snapshot.c index e1e4d89738..94cb838064 100644 --- a/block/qcow2-snapshot.c +++ b/block/qcow2-snapshot.c @@ -288,7 +288,7 @@ int qcow2_snapshot_create(BlockDriverState *bs, QEMUSnapshotInfo *sn_info) if (qcow_write_snapshots(bs) < 0) goto fail; #ifdef DEBUG_ALLOC - check_refcounts(bs); + qcow2_check_refcounts(bs); #endif return 0; fail: @@ -332,7 +332,7 @@ int qcow2_snapshot_goto(BlockDriverState *bs, const char *snapshot_id) goto fail; #ifdef DEBUG_ALLOC - check_refcounts(bs); + qcow2_check_refcounts(bs); #endif return 0; fail: @@ -369,7 +369,7 @@ int qcow2_snapshot_delete(BlockDriverState *bs, const char *snapshot_id) return ret; } #ifdef DEBUG_ALLOC - check_refcounts(bs); + qcow2_check_refcounts(bs); #endif return 0; } -- cgit v1.2.3