Removed double spacing around `=` where appropriate in stout.

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

Branch: refs/heads/master
Commit: 38ab7646eb1ff66fc55aa8a489aa755b4ea4dc64
Parents: d5a7c22
Author: Alexander Rukletsov <al...@apache.org>
Authored: Thu Aug 10 17:50:12 2017 +0200
Committer: Alexander Rukletsov <al...@apache.org>
Committed: Thu Aug 10 18:26:07 2017 +0200

----------------------------------------------------------------------
 3rdparty/stout/include/stout/os/posix/socket.hpp | 2 +-
 3rdparty/stout/tests/os/filesystem_tests.cpp     | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/38ab7646/3rdparty/stout/include/stout/os/posix/socket.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/stout/include/stout/os/posix/socket.hpp 
b/3rdparty/stout/include/stout/os/posix/socket.hpp
index 927e7a1..bab0b80 100644
--- a/3rdparty/stout/include/stout/os/posix/socket.hpp
+++ b/3rdparty/stout/include/stout/os/posix/socket.hpp
@@ -41,7 +41,7 @@ inline bool is_restartable_error(int error)
 // retry the operation later.
 inline bool is_retryable_error(int error)
 {
-  return (error ==  EWOULDBLOCK || error == EAGAIN);
+  return (error == EWOULDBLOCK || error == EAGAIN);
 }
 
 

http://git-wip-us.apache.org/repos/asf/mesos/blob/38ab7646/3rdparty/stout/tests/os/filesystem_tests.cpp
----------------------------------------------------------------------
diff --git a/3rdparty/stout/tests/os/filesystem_tests.cpp 
b/3rdparty/stout/tests/os/filesystem_tests.cpp
index f385d35..841f655 100644
--- a/3rdparty/stout/tests/os/filesystem_tests.cpp
+++ b/3rdparty/stout/tests/os/filesystem_tests.cpp
@@ -90,7 +90,7 @@ TEST_F(FsTest, Find)
 
 TEST_F(FsTest, ReadWriteString)
 {
-  const string testfile  = path::join(os::getcwd(), UUID::random().toString());
+  const string testfile = path::join(os::getcwd(), UUID::random().toString());
   const string teststr = "line1\nline2";
 
   ASSERT_SOME(os::write(testfile, teststr));
@@ -173,7 +173,7 @@ TEST_F(FsTest, Exists)
 
 TEST_F(FsTest, Touch)
 {
-  const string testfile  = path::join(os::getcwd(), UUID::random().toString());
+  const string testfile = path::join(os::getcwd(), UUID::random().toString());
 
   ASSERT_SOME(os::touch(testfile));
   ASSERT_TRUE(os::exists(testfile));

Reply via email to