diff options
author | Sage Weil <sage@inktank.com> | 2013-05-31 14:53:05 -0700 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-06-17 14:24:45 -0700 |
commit | 796bb4e39791028e9c25a7a4b81f9466f133dec0 (patch) | |
tree | c2868c5787b06aa0e968dea0000e3134e1359b05 | |
parent | 880bfaa2ce8fff1076f5af686934e29810ba061f (diff) | |
download | ceph-796bb4e39791028e9c25a7a4b81f9466f133dec0.tar.gz |
mon: fix whitespace
Signed-off-by: Sage Weil <sage@inktank.com>
-rw-r--r-- | src/mon/LogMonitor.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mon/LogMonitor.cc b/src/mon/LogMonitor.cc index 54aea67eb8f..91ca497a744 100644 --- a/src/mon/LogMonitor.cc +++ b/src/mon/LogMonitor.cc @@ -105,13 +105,13 @@ void LogMonitor::update_from_paxos(bool *need_bootstrap) version_t latest_full = get_version_latest_full(); dout(10) << __func__ << " latest full " << latest_full << dendl; if ((latest_full > 0) && (latest_full > summary.version)) { - bufferlist latest_bl; - get_version_full(latest_full, latest_bl); - assert(latest_bl.length() != 0); - dout(7) << __func__ << " loading summary e" << latest_full << dendl; - bufferlist::iterator p = latest_bl.begin(); - ::decode(summary, p); - dout(7) << __func__ << " loaded summary e" << summary.version << dendl; + bufferlist latest_bl; + get_version_full(latest_full, latest_bl); + assert(latest_bl.length() != 0); + dout(7) << __func__ << " loading summary e" << latest_full << dendl; + bufferlist::iterator p = latest_bl.begin(); + ::decode(summary, p); + dout(7) << __func__ << " loaded summary e" << summary.version << dendl; } // walk through incrementals |