diff options
Diffstat (limited to 'cpp/test/IceUtil/ctrlCHandler/Client.cpp')
-rw-r--r-- | cpp/test/IceUtil/ctrlCHandler/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceUtil/ctrlCHandler/Client.cpp b/cpp/test/IceUtil/ctrlCHandler/Client.cpp index 2eff49a6126..38e8753b66e 100644 --- a/cpp/test/IceUtil/ctrlCHandler/Client.cpp +++ b/cpp/test/IceUtil/ctrlCHandler/Client.cpp @@ -26,10 +26,10 @@ int main() cout << "First ignore CTRL+C and the like for 10 seconds (try it!)" << endl; CtrlCHandler handler; ThreadControl::sleep(Time::seconds(10)); - + cout << "Then handling them for another 30 seconds (try it)" << endl; handler.setCallback(callback); - ThreadControl::sleep(Time::seconds(10)); + ThreadControl::sleep(Time::seconds(10)); } cout << "And another 10 seconds after ~CtrlCHandler" << endl; ThreadControl::sleep(Time::seconds(10)); |