From: xiexingguo <258156334@qq.com> Date: Mon, 21 Dec 2015 10:43:19 +0000 (+0800) Subject: ECBackend: fix unmatched parenttheses X-Git-Tag: v10.0.3~168^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F6998%2Fhead;p=ceph.git ECBackend: fix unmatched parenttheses Signed-off-by: xie xingguo --- diff --git a/src/osd/ECBackend.cc b/src/osd/ECBackend.cc index a79ba096da6..e8d26eb4e31 100644 --- a/src/osd/ECBackend.cc +++ b/src/osd/ECBackend.cc @@ -88,7 +88,7 @@ ostream &operator<<(ostream &lhs, const ECBackend::read_result_t &rhs) } else { lhs << ", noattrs"; } - return lhs << ", returned=" << rhs.returned; + return lhs << ", returned=" << rhs.returned << ")"; } ostream &operator<<(ostream &lhs, const ECBackend::ReadOp &rhs) @@ -150,7 +150,8 @@ ostream &operator<<(ostream &lhs, const ECBackend::RecoveryOp &rhs) << " obc refcount=" << rhs.obc.use_count() << " state=" << ECBackend::RecoveryOp::tostr(rhs.state) << " waiting_on_pushes=" << rhs.waiting_on_pushes - << " extent_requested=" << rhs.extent_requested; + << " extent_requested=" << rhs.extent_requested + << ")"; } void ECBackend::RecoveryOp::dump(Formatter *f) const