Repository: mesos Updated Branches: refs/heads/master 0083b1285 -> 4b9ea1ebe
Fixed missing '+' in docker.cpp. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/4b9ea1eb Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/4b9ea1eb Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/4b9ea1eb Branch: refs/heads/master Commit: 4b9ea1ebe4e2670ac4e72e1c2e0602603ffff600 Parents: 0083b12 Author: Vinod Kone <[email protected]> Authored: Thu Aug 14 16:53:29 2014 -0700 Committer: Vinod Kone <[email protected]> Committed: Thu Aug 14 16:53:29 2014 -0700 ---------------------------------------------------------------------- src/docker/docker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/4b9ea1eb/src/docker/docker.cpp ---------------------------------------------------------------------- diff --git a/src/docker/docker.cpp b/src/docker/docker.cpp index 8f04bab..ebdf226 100644 --- a/src/docker/docker.cpp +++ b/src/docker/docker.cpp @@ -140,7 +140,7 @@ Try<Docker> Docker::create(const string& path, bool validate) } else if (status.isFailed()) { return Error("Failed to execute '" + cmd + "': " + status.failure()); } else if (!status.get().isSome() || status.get().get() != 0) { - string msg = "Failed to execute '" + cmd "': "; + string msg = "Failed to execute '" + cmd + "': "; if (status.get().isSome()) { msg += "exited with status " + WSTRINGIFY(status.get().get()); } else {
