From abb32897e2489c759cfa50beade1794231700688 Mon Sep 17 00:00:00 2001 From: Joe Thornber Date: Tue, 17 Apr 2018 10:29:31 +0100 Subject: [PATCH] [thin_dump] human_readable emitter didn't print the metadata_snap. --- thin-provisioning/human_readable_format.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thin-provisioning/human_readable_format.cc b/thin-provisioning/human_readable_format.cc index 6c53b3c..258c59b 100644 --- a/thin-provisioning/human_readable_format.cc +++ b/thin-provisioning/human_readable_format.cc @@ -56,7 +56,7 @@ namespace { << ", " << data_block_size << ", " << nr_data_blocks; if (metadata_snap) - out_ << ", " << metadata_snap; + out_ << ", " << *metadata_snap; out_ << endl; }