summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Corino <mcorino@remedy.nl>2015-06-03 10:17:20 +0200
committerMartin Corino <mcorino@remedy.nl>2015-06-03 10:17:20 +0200
commitd19f0a4740e37517207c4d204639b9ccdff00f4e (patch)
treed2198aacb29645fe8999460b61b80c066a41c48f
parent404853f41d696d1b0cd421a594d1f69825c95f1f (diff)
downloadATCD-d19f0a4740e37517207c4d204639b9ccdff00f4e.tar.gz
Fix integer signedness comparison warning.
* TAO/tao/Dynamic_TP/DTP_Task.cpp:
-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_;
}