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

mesos git commit: Added a missing space in rwlock.hpp.

Repository: mesos
Updated Branches:
  refs/heads/master 5bd78d713 -> 9df7d49a1


Added a missing space in rwlock.hpp.


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

Branch: refs/heads/master
Commit: 9df7d49a1dba2e74fb99607005aaf90cf13bbf85
Parents: 5bd78d7
Author: Benjamin Mahler <bm...@apache.org>
Authored: Thu Oct 19 15:41:13 2017 -0700
Committer: Benjamin Mahler <bm...@apache.org>
Committed: Thu Oct 19 15:41:13 2017 -0700

----------------------------------------------------------------------
 3rdparty/libprocess/include/process/rwlock.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/9df7d49a/3rdparty/libprocess/include/process/rwlock.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/include/process/rwlock.hpp b/3rdparty/libprocess/include/process/rwlock.hpp
index b9f76f6..9b62374 100644
--- a/3rdparty/libprocess/include/process/rwlock.hpp
+++ b/3rdparty/libprocess/include/process/rwlock.hpp
@@ -153,7 +153,7 @@ public:
 private:
   struct Waiter
   {
-    enum { READ, WRITE} type;
+    enum { READ, WRITE } type;
     Promise<Nothing> promise;
   };