diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-03-09 19:30:17 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-03-09 19:30:17 +0000 |
commit | 5fc8d7379ad3f53451c501e3a8129f18343dcdec (patch) | |
tree | 1e769486f9eda119594fe9b4394626ac446caac0 /netsvcs | |
parent | ead04258da7a580053abb0d4ad7cb1f4196ad0c2 (diff) | |
download | ATCD-5fc8d7379ad3f53451c501e3a8129f18343dcdec.tar.gz |
foo
Diffstat (limited to 'netsvcs')
-rw-r--r-- | netsvcs/clients/Logger/indirect_logging.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/netsvcs/clients/Logger/indirect_logging.cpp b/netsvcs/clients/Logger/indirect_logging.cpp index eabf26cd851..efb8358080f 100644 --- a/netsvcs/clients/Logger/indirect_logging.cpp +++ b/netsvcs/clients/Logger/indirect_logging.cpp @@ -20,9 +20,9 @@ main (int argc, char *argv[]) ACE_DEBUG ((LM_STARTUP, "starting up the test\n")); - for (int i = 0; i < iterations; i++) + for (size_t i = 0; i < iterations; i++) { - int priority = ACE_OS::rand () % int (LM_MAX); + size_t priority = ACE_OS::rand () % int (LM_MAX); ACE_POW (priority); ACE_DEBUG ((ACE_Log_Priority (priority), "random message %d...\n", |