summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_unistd.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2019-03-04 15:30:06 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2019-03-04 15:30:06 +0100
commit5864427456f7c02aa0de6fdf0cd7054620d9192c (patch)
tree9ca491fcf822bbd1213b436caa78eb7c0db68ed0 /ACE/ace/OS_NS_unistd.cpp
parent530d4302413322c66c80798313d0af938791a1bb (diff)
downloadATCD-5864427456f7c02aa0de6fdf0cd7054620d9192c.tar.gz
Fixed statement may fall through warning
* ACE/ace/OS_NS_unistd.cpp:
Diffstat (limited to 'ACE/ace/OS_NS_unistd.cpp')
-rw-r--r--ACE/ace/OS_NS_unistd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/ace/OS_NS_unistd.cpp b/ACE/ace/OS_NS_unistd.cpp
index 113e4670dce..1bf7a4cdc4b 100644
--- a/ACE/ace/OS_NS_unistd.cpp
+++ b/ACE/ace/OS_NS_unistd.cpp
@@ -388,7 +388,7 @@ ACE_OS::fork_exec (ACE_TCHAR *argv[])
ACE_OS::exit (errno);
}
# endif /* ACE_HAS_WCHAR */
-
+ return result;
default:
// Server process. The fork succeeded.
return result;