]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
os/bluestore: end scope of std::hex properly
authorxie xingguo <xie.xingguo@zte.com.cn>
Fri, 2 Sep 2016 03:37:05 +0000 (11:37 +0800)
committerxie xingguo <xie.xingguo@zte.com.cn>
Fri, 2 Sep 2016 06:11:41 +0000 (14:11 +0800)
Signed-off-by: xie xingguo <xie.xingguo@zte.com.cn>
src/os/bluestore/BlueStore.cc

index f19070f38d58874ac8b67fbb02de4b286f4b5163..4875ec3112c34b8e02e3e186f5e7fb100d87f522 100644 (file)
@@ -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()) {