]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mon/PGMap: make pg state indentation cleaner
authorSage Weil <sage@inktank.com>
Tue, 13 Aug 2013 23:46:55 +0000 (16:46 -0700)
committerSage Weil <sage@inktank.com>
Tue, 13 Aug 2013 23:52:29 +0000 (16:52 -0700)
Signed-off-by: Sage Weil <sage@inktank.com>
src/mon/PGMap.cc

index 725f0e8913ccf13d5709cf436a95fe3eef0bda60..279ecaab3891a07234c183c803d953cf00d6baa7 100644 (file)
@@ -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);
     }
   }