From: Patrick Donnelly Date: Wed, 16 Aug 2017 17:07:43 +0000 (-0700) Subject: client: add missing space in debug msg X-Git-Tag: v13.0.0~26^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3f806c72dd3b9b28761ee32f5e32001de8362028;p=ceph.git client: add missing space in debug msg Signed-off-by: Patrick Donnelly --- diff --git a/src/client/Client.cc b/src/client/Client.cc index 6ee1396ec7b3..57081a9e4455 100644 --- a/src/client/Client.cc +++ b/src/client/Client.cc @@ -5212,7 +5212,7 @@ ostream& operator<<(ostream &out, const UserPerm& perm) { int Client::may_setattr(Inode *in, struct ceph_statx *stx, int mask, const UserPerm& perms) { - ldout(cct, 20) << __func__ << *in << "; " << perms << dendl; + ldout(cct, 20) << __func__ << " " << *in << "; " << perms << dendl; int r = _getattr_for_perm(in, perms); if (r < 0) goto out;