summaryrefslogtreecommitdiff
path: root/ACE/tests/FlReactor_Test.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-05-24 14:44:39 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-05-24 14:44:39 +0000
commita91f4b7fa79b5287e927371a5c13898cb83f52d2 (patch)
treed0f02948c8da8fc058deb500b4d373809a2e2df3 /ACE/tests/FlReactor_Test.cpp
parent8fa93ca7849bd72ab98029dfa5189dbcc951a578 (diff)
downloadATCD-a91f4b7fa79b5287e927371a5c13898cb83f52d2.tar.gz
Mon May 24 14:42:57 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_dirent.cpp: Small code improvements to closedir * tests/FlReactor_Test.cpp: Small changes
Diffstat (limited to 'ACE/tests/FlReactor_Test.cpp')
-rw-r--r--ACE/tests/FlReactor_Test.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/ACE/tests/FlReactor_Test.cpp b/ACE/tests/FlReactor_Test.cpp
index 1bc32627bd2..095624b5352 100644
--- a/ACE/tests/FlReactor_Test.cpp
+++ b/ACE/tests/FlReactor_Test.cpp
@@ -271,8 +271,10 @@ int run_main (int argc, ACE_TCHAR *argv[])
window.show (argc, argv);
tw.show ();
- return Fl::run ();
+ int const retval = Fl::run ();
ACE_END_TEST;
+
+ return retval;
}