summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormcorino <mcorino@remedy.nl>2015-06-03 11:05:52 +0200
committermcorino <mcorino@remedy.nl>2015-06-03 11:05:52 +0200
commitf579ed5cb4f105bc11b2f6a2c13e05701dd5ef10 (patch)
treed2198aacb29645fe8999460b61b80c066a41c48f
parent0c6a0f9be27c1b76021664d545fc37d1294d0cc2 (diff)
parentd19f0a4740e37517207c4d204639b9ccdff00f4e (diff)
downloadATCD-f579ed5cb4f105bc11b2f6a2c13e05701dd5ef10.tar.gz
Merge pull request #89 from mcorino/master
Fix integer signedness comparison warning.
-rw-r--r--TAO/tao/Dynamic_TP/DTP_Task.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tao/Dynamic_TP/DTP_Task.cpp b/TAO/tao/Dynamic_TP/DTP_Task.cpp
index 30adce9c2e2..e587d7eb746 100644
--- a/TAO/tao/Dynamic_TP/DTP_Task.cpp
+++ b/TAO/tao/Dynamic_TP/DTP_Task.cpp
@@ -193,7 +193,7 @@ TAO_DTP_Task::open (void* /* args */)
else
{
size_t * stack_sz_arr = new size_t[num];
- for (size_t z = 0; z < num; z++)
+ for (int z = 0; z < num; z++)
{
stack_sz_arr[z] = this->thread_stack_size_;
}