summaryrefslogtreecommitdiff
path: root/cpp/test/IceUtil/thread/CreateTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/IceUtil/thread/CreateTest.cpp')
-rw-r--r--cpp/test/IceUtil/thread/CreateTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceUtil/thread/CreateTest.cpp b/cpp/test/IceUtil/thread/CreateTest.cpp
index fb91e8e8b89..8c852b21dc4 100644
--- a/cpp/test/IceUtil/thread/CreateTest.cpp
+++ b/cpp/test/IceUtil/thread/CreateTest.cpp
@@ -47,13 +47,13 @@ CreateTest::CreateTest() :
void
CreateTest::run()
{
- for (int i = 0; i < 4096 ; ++i)
+ for(int i = 0; i < 4096 ; ++i)
{
CreateTestThreadPtr t = new CreateTestThread();
ThreadControl control = t->start();
control.join();
test(t->threadran);
- if ((i % 256) == 0)
+ if((i % 256) == 0)
{
char buf[5];
sprintf(buf, "%04d", i);