You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ji...@apache.org on 2017/05/06 20:29:18 UTC

mesos git commit: Fixed a typo that detects if the platform is linux.

Repository: mesos
Updated Branches:
  refs/heads/master c3d87d6a8 -> 1e786dd94


Fixed a typo that detects if the platform is linux.

Review: https://reviews.apache.org/r/59037/


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

Branch: refs/heads/master
Commit: 1e786dd9447dbd0230840aea75ad49ec044e2594
Parents: c3d87d6
Author: Chun-Hung Hsiao <ch...@mesosphere.io>
Authored: Sat May 6 13:29:12 2017 -0700
Committer: Jie Yu <yu...@gmail.com>
Committed: Sat May 6 13:29:12 2017 -0700

----------------------------------------------------------------------
 src/slave/containerizer/mesos/provisioner/provisioner.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/1e786dd9/src/slave/containerizer/mesos/provisioner/provisioner.cpp
----------------------------------------------------------------------
diff --git a/src/slave/containerizer/mesos/provisioner/provisioner.cpp b/src/slave/containerizer/mesos/provisioner/provisioner.cpp
index be45fc5..6509ee4 100644
--- a/src/slave/containerizer/mesos/provisioner/provisioner.cpp
+++ b/src/slave/containerizer/mesos/provisioner/provisioner.cpp
@@ -218,7 +218,7 @@ Try<Owned<Provisioner>> Provisioner::create(const Flags& flags)
     // list is a priority list, meaning that we favor backends in the
     // front of the list.
     vector<string> backendNames = {
-#ifdef __linux
+#ifdef __linux__
       OVERLAY_BACKEND,
       AUFS_BACKEND,
 #endif // __linux__