Repository: mesos Updated Branches: refs/heads/master ed1866bfb -> 4c4dcc5a9
Removed an unnecessary string construction. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/4c4dcc5a Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/4c4dcc5a Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/4c4dcc5a Branch: refs/heads/master Commit: 4c4dcc5a94f9fb5eab1201e5f1068faf966506af Parents: ed1866b Author: Benjamin Mahler <[email protected]> Authored: Wed Nov 4 15:08:18 2015 -0800 Committer: Benjamin Mahler <[email protected]> Committed: Wed Nov 4 15:08:18 2015 -0800 ---------------------------------------------------------------------- 3rdparty/libprocess/src/subprocess.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/4c4dcc5a/3rdparty/libprocess/src/subprocess.cpp ---------------------------------------------------------------------- diff --git a/3rdparty/libprocess/src/subprocess.cpp b/3rdparty/libprocess/src/subprocess.cpp index 3dafa58..efe0018 100644 --- a/3rdparty/libprocess/src/subprocess.cpp +++ b/3rdparty/libprocess/src/subprocess.cpp @@ -176,8 +176,7 @@ static int childMain( os::execvpe(path.c_str(), argv, envp); - ABORT( - string("Failed to os::execvpe on path '") + path + "': " + strerror(errno)); + ABORT("Failed to os::execvpe on path '" + path + "': " + strerror(errno)); }
