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
commitc86426d760f6d4ed419d40306ebae9fb029e747b (patch)
treef61617c4a89897452208b3afa2b95f433fa47c48 /tests
parentb9c68824cce76c9330f9efba571afd2438f2c04e (diff)
downloadATCD-c86426d760f6d4ed419d40306ebae9fb029e747b.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])