diff options
author | Bernard Normier <bernard@zeroc.com> | 2012-08-09 17:05:42 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2012-08-09 17:05:42 -0400 |
commit | a9e44ca45db29a778490b52f4e6b7717e1ca93de (patch) | |
tree | 293fb8f892f096c49fc8f151be0af34181ed7c26 /cpp/test/IceUtil/condvar/WorkQueue.cpp | |
parent | Fixed file permission (diff) | |
download | ice-a9e44ca45db29a778490b52f4e6b7717e1ca93de.tar.bz2 ice-a9e44ca45db29a778490b52f4e6b7717e1ca93de.tar.xz ice-a9e44ca45db29a778490b52f4e6b7717e1ca93de.zip |
Cleaned up warning-disabling on Windows
Diffstat (limited to 'cpp/test/IceUtil/condvar/WorkQueue.cpp')
-rw-r--r-- | cpp/test/IceUtil/condvar/WorkQueue.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceUtil/condvar/WorkQueue.cpp b/cpp/test/IceUtil/condvar/WorkQueue.cpp index 63e3a8b56ee..7d093b7279e 100644 --- a/cpp/test/IceUtil/condvar/WorkQueue.cpp +++ b/cpp/test/IceUtil/condvar/WorkQueue.cpp @@ -262,7 +262,7 @@ main(int argc, char** argv) for(i = 0; i < 100; i++) { - TestThreadPtr p = new TestThread(cd, signalQ, i % 2); + TestThreadPtr p = new TestThread(cd, signalQ, i % 2 != 0); p->start(); testThreads.push_back(p); } @@ -275,7 +275,7 @@ main(int argc, char** argv) for(i = 0; i < 100; i++) { - TestThreadPtr p = new TestThread(cd, broadcastQ, i % 2); + TestThreadPtr p = new TestThread(cd, broadcastQ, i % 2 != 0); p->start(); testThreads.push_back(p); } |