You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by al...@apache.org on 2017/09/18 21:22:24 UTC

[6/7] mesos git commit: Libprocess: Corrected double spaces around `<<`.

Libprocess: Corrected double spaces around `<<`.


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

Branch: refs/heads/master
Commit: 865cf1d8b6bd60150bd78d295fd3dd5b1464433a
Parents: dcfa2f9
Author: Alexander Rukletsov <al...@apache.org>
Authored: Mon Sep 18 23:20:05 2017 +0200
Committer: Alexander Rukletsov <al...@apache.org>
Committed: Mon Sep 18 23:21:47 2017 +0200

----------------------------------------------------------------------
 3rdparty/libprocess/src/openssl.cpp          | 2 +-
 3rdparty/libprocess/src/tests/benchmarks.cpp | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/865cf1d8/3rdparty/libprocess/src/openssl.cpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/src/openssl.cpp b/3rdparty/libprocess/src/openssl.cpp
index 22f073e..d16cc1d 100644
--- a/3rdparty/libprocess/src/openssl.cpp
+++ b/3rdparty/libprocess/src/openssl.cpp
@@ -542,7 +542,7 @@ void reinitialize()
         unsigned long error = ERR_get_error();
         EXIT(EXIT_FAILURE)
           << "Could not load CA file and/or directory (OpenSSL error #"
-          << stringify(error)  << "): "
+          << stringify(error) << "): "
           << error_string(error) << " -> "
           << (ca_file != nullptr ? (stringify("FILE: ") + ca_file) : "")
           << (ca_dir != nullptr ? (stringify("DIR: ") + ca_dir) : "");

http://git-wip-us.apache.org/repos/asf/mesos/blob/865cf1d8/3rdparty/libprocess/src/tests/benchmarks.cpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/src/tests/benchmarks.cpp b/3rdparty/libprocess/src/tests/benchmarks.cpp
index a691705..8195193 100644
--- a/3rdparty/libprocess/src/tests/benchmarks.cpp
+++ b/3rdparty/libprocess/src/tests/benchmarks.cpp
@@ -543,7 +543,7 @@ public:
 
     AWAIT_READY(promise.future());
 
-    cout << name <<  " elapsed: " << watch.elapsed() << endl;
+    cout << name << " elapsed: " << watch.elapsed() << endl;
 
     terminate(process.get());
     wait(process.get());