diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-01-15 15:12:09 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-01-15 15:12:09 +0000 |
commit | 071ecdb24fc0dc33e02ce59fd541adead9cefc6f (patch) | |
tree | 9d4492851a23658ea75fe7ef0e49f26fa388dce5 /tests/Priority_Task_Test.cpp | |
parent | 53b647d7d282e5eb64687ffcb8f7c663d8763797 (diff) | |
download | ATCD-071ecdb24fc0dc33e02ce59fd541adead9cefc6f.tar.gz |
(main): changed some local variables from int to size_t to avoid signed/unsigned comparison
Diffstat (limited to 'tests/Priority_Task_Test.cpp')
-rw-r--r-- | tests/Priority_Task_Test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Priority_Task_Test.cpp b/tests/Priority_Task_Test.cpp index c4e3cba8ef1..e67d683f5c9 100644 --- a/tests/Priority_Task_Test.cpp +++ b/tests/Priority_Task_Test.cpp @@ -127,7 +127,7 @@ main (int, char *[]) Priority_Task tasks[ACE_MAX_ITERATIONS]; - int i; + size_t i; // Spawn off ACE_MAX_ITERATIONS of tasks, passing each one their // iteration number as their priority. |