Repository: mesos Updated Branches: refs/heads/master d43b9df4a -> 5d06b3da0
Consistent wrapping for EXIT statement. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/5d06b3da Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/5d06b3da Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/5d06b3da Branch: refs/heads/master Commit: 5d06b3da0f7e34faccd66c64050261dccd2d3ebc Parents: d43b9df Author: Benjamin Mahler <[email protected]> Authored: Wed Jul 1 17:24:59 2015 -0700 Committer: Benjamin Mahler <[email protected]> Committed: Wed Jul 1 17:24:59 2015 -0700 ---------------------------------------------------------------------- 3rdparty/libprocess/src/process.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/5d06b3da/3rdparty/libprocess/src/process.cpp ---------------------------------------------------------------------- diff --git a/3rdparty/libprocess/src/process.cpp b/3rdparty/libprocess/src/process.cpp index 2d29d96..883776a 100644 --- a/3rdparty/libprocess/src/process.cpp +++ b/3rdparty/libprocess/src/process.cpp @@ -896,9 +896,9 @@ void initialize(const string& delegate) Try<net::IP> ip = net::getIP(hostname, __address__.ip.family()); if (ip.isError()) { - EXIT(EXIT_FAILURE) << "Failed to obtain the IP address for '" << hostname - << "'; the DNS service may not be able to resolve it: " - << ip.error(); + EXIT(EXIT_FAILURE) + << "Failed to obtain the IP address for '" << hostname << "';" + << " the DNS service may not be able to resolve it: " << ip.error(); } __address__.ip = ip.get();
