diff options
Diffstat (limited to 'cpp/test/IceUtil/thread/StartTest.cpp')
-rw-r--r-- | cpp/test/IceUtil/thread/StartTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceUtil/thread/StartTest.cpp b/cpp/test/IceUtil/thread/StartTest.cpp index eef50038b47..6f32a98bf41 100644 --- a/cpp/test/IceUtil/thread/StartTest.cpp +++ b/cpp/test/IceUtil/thread/StartTest.cpp @@ -64,8 +64,8 @@ StartTest::run() { for(int j = 0; j < 40; j++) { - Thread* t = new StartTestThread; - t->start().detach(); + Thread* thread = new StartTestThread; + thread->start().detach(); } ThreadControl::sleep(Time::milliSeconds(5)); } |