summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-04-20 20:00:47 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-04-20 20:00:47 +0000
commit52dffe23350d2759bc9a1f3417610b23fc4a754c (patch)
treef61617c4a89897452208b3afa2b95f433fa47c48 /tests
parent72a0d41bce1b8672481d21004075374a42033817 (diff)
downloadATCD-52dffe23350d2759bc9a1f3417610b23fc4a754c.tar.gz
ChangeLogTag: Wed Apr 20 19:54:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'tests')
-rw-r--r--tests/ACE_Test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ACE_Test.cpp b/tests/ACE_Test.cpp
index a78f437cf26..86749cc3a0c 100644
--- a/tests/ACE_Test.cpp
+++ b/tests/ACE_Test.cpp
@@ -28,7 +28,7 @@ log2_test (void)
u_long result = 0;
int error_count = 0;
- for (int i = 0; i < sizeof (values)/sizeof(u_long); i++)
+ for (size_t i = 0 ; i < sizeof (values) / sizeof (u_long) ; i++)
{
result = ACE::log2(values [i]);
if (result != results [i])