aboutsummaryrefslogtreecommitdiff
path: root/block.c
diff options
context:
space:
mode:
Diffstat (limited to 'block.c')
-rw-r--r--block.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/block.c b/block.c
index bd65ed3611..4f5c311adc 100644
--- a/block.c
+++ b/block.c
@@ -1153,9 +1153,8 @@ void bdrv_info_stats(Monitor *mon)
bs->rd_bytes, bs->wr_bytes,
bs->rd_ops, bs->wr_ops);
if (bdrv_get_info(bs, &bdi) == 0)
- monitor_printf(mon, " high=%" PRId64
- " bytes_free=%" PRId64,
- bdi.highest_alloc, bdi.num_free_bytes);
+ monitor_printf(mon, " high=%" PRId64,
+ bdi.highest_alloc);
monitor_printf(mon, "\n");
}
}