From: Sage Weil Date: Tue, 13 Aug 2013 23:46:55 +0000 (-0700) Subject: mon/PGMap: make pg state indentation cleaner X-Git-Tag: v0.68~69^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=fbc65ea8755945f2e9459927b99265780cca3bdd;p=ceph.git mon/PGMap: make pg state indentation cleaner Signed-off-by: Sage Weil --- diff --git a/src/mon/PGMap.cc b/src/mon/PGMap.cc index 725f0e8913cc..279ecaab3891 100644 --- a/src/mon/PGMap.cc +++ b/src/mon/PGMap.cc @@ -803,7 +803,7 @@ void PGMap::print_summary(Formatter *f, ostream *out) const f->close_section(); } else { ss.setf(std::ios::right); - ss << std::setw(9) << p->second << " " << pg_state_string(p->first) << "\n"; + ss << " " << std::setw(7) << p->second << " " << pg_state_string(p->first) << "\n"; ss.unsetf(std::ios::right); } }