From: xie xingguo Date: Fri, 29 Jul 2016 03:15:33 +0000 (+0800) Subject: os/bluestore: drop redundant std::hex X-Git-Tag: ses5-milestone5~155^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1e8f40b7c6f2f8407c99ea187c2efce7463f77d5;p=ceph.git os/bluestore: drop redundant std::hex And add "0x" prefix for hexadecimal output. Signed-off-by: xie xingguo --- diff --git a/src/os/bluestore/bluestore_types.cc b/src/os/bluestore/bluestore_types.cc index dfec95a1fcf..00a7e05de4e 100644 --- a/src/os/bluestore/bluestore_types.cc +++ b/src/os/bluestore/bluestore_types.cc @@ -555,7 +555,7 @@ ostream& operator<<(ostream& out, const bluestore_blob_t& o) out << "blob(" << o.extents << " clen 0x" << std::hex << o.compressed_length_orig - << " -> " << std::hex + << " -> 0x" << o.compressed_length << std::dec; if (o.flags) {