From: xie xingguo Date: Fri, 2 Sep 2016 03:37:05 +0000 (+0800) Subject: os/bluestore: end scope of std::hex properly X-Git-Tag: v11.0.1~335^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=aa8cc2b5c2ca5b3d39b99bf5154cd8c04b06caab;p=ceph.git os/bluestore: end scope of std::hex properly Signed-off-by: xie xingguo --- diff --git a/src/os/bluestore/BlueStore.cc b/src/os/bluestore/BlueStore.cc index f19070f38d58..4875ec3112c3 100644 --- a/src/os/bluestore/BlueStore.cc +++ b/src/os/bluestore/BlueStore.cc @@ -3045,7 +3045,7 @@ int BlueStore::_fsck_verify_blob_map( if (already_allocated) { derr << " " << what << " extent 0x" << std::hex << p.offset << "~" << p.length - << " or its' subset is already allocated" << dendl; + << " or its' subset is already allocated" << std::dec << dendl; ++errors; } else { if (p.end() > bdev->get_size()) {