You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2014/10/27 17:51:13 UTC

git commit: Fixed line wrap in state/log.cpp.

Repository: mesos
Updated Branches:
  refs/heads/master d418c17b8 -> fc676007a


Fixed line wrap in state/log.cpp.


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/fc676007
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/fc676007
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/fc676007

Branch: refs/heads/master
Commit: fc676007a0dd56f495f7160bf365fb2d11ffb733
Parents: d418c17
Author: Vinod Kone <vi...@gmail.com>
Authored: Mon Oct 27 09:49:56 2014 -0700
Committer: Vinod Kone <vi...@gmail.com>
Committed: Mon Oct 27 09:49:56 2014 -0700

----------------------------------------------------------------------
 src/state/log.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/fc676007/src/state/log.cpp
----------------------------------------------------------------------
diff --git a/src/state/log.cpp b/src/state/log.cpp
index 95326a6..9033ce4 100644
--- a/src/state/log.cpp
+++ b/src/state/log.cpp
@@ -305,7 +305,8 @@ Future<Nothing> LogStorageProcess::apply(const list<Log::Entry>& entries)
         case Operation::DIFF: {
           CHECK(operation.has_diff());
 
-          Option<Snapshot> snapshot = snapshots.get(operation.diff().entry().name());
+          Option<Snapshot> snapshot =
+            snapshots.get(operation.diff().entry().name());
 
           CHECK_SOME(snapshot);