You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2014/10/29 08:17:28 UTC

git commit: Fixed signedness compilation bug.

Repository: mesos
Updated Branches:
  refs/heads/master 6296ea102 -> b8ada87e8


Fixed signedness compilation bug.


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

Branch: refs/heads/master
Commit: b8ada87e848097e6f86bde914b1d683c5243fc6b
Parents: 6296ea1
Author: Benjamin Hindman <be...@gmail.com>
Authored: Wed Oct 29 00:17:11 2014 -0700
Committer: Benjamin Hindman <be...@gmail.com>
Committed: Wed Oct 29 00:17:11 2014 -0700

----------------------------------------------------------------------
 src/tests/ns_tests.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/b8ada87e/src/tests/ns_tests.cpp
----------------------------------------------------------------------
diff --git a/src/tests/ns_tests.cpp b/src/tests/ns_tests.cpp
index 872009f..046ea26 100644
--- a/src/tests/ns_tests.cpp
+++ b/src/tests/ns_tests.cpp
@@ -139,7 +139,7 @@ static void* childThread(void* arg)
 TEST(NsTest, ROOT_setnsMultipleThreads)
 {
   set<string> namespaces = ns::namespaces();
-  EXPECT_LT(0, namespaces.size());
+  EXPECT_LT(0u, namespaces.size());
 
   // Do not allow multi-threaded environment.
   pthread_t pthread;