summaryrefslogtreecommitdiff
path: root/ACE/tests
diff options
context:
space:
mode:
authorJustin R. Wilson <wilsonj@objectcomputing.com>2019-02-25 09:23:12 -0600
committerJustin R. Wilson <wilsonj@objectcomputing.com>2019-02-25 09:23:12 -0600
commit42bd1fcf1951530b8af007fb9084745fc38edd03 (patch)
tree48cefc8f6719f280982e7aee4406ed1d97cc42dc /ACE/tests
parent584f74e4cdf8d9279fc800e46c9b8956a7c95fb7 (diff)
downloadATCD-42bd1fcf1951530b8af007fb9084745fc38edd03.tar.gz
Fix missing return value
Diffstat (limited to 'ACE/tests')
-rw-r--r--ACE/tests/SOCK_Dgram_Test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/tests/SOCK_Dgram_Test.cpp b/ACE/tests/SOCK_Dgram_Test.cpp
index 14ee0af7eae..6474fce783b 100644
--- a/ACE/tests/SOCK_Dgram_Test.cpp
+++ b/ACE/tests/SOCK_Dgram_Test.cpp
@@ -88,7 +88,7 @@ client (void *arg)
if (cli_dgram.set_option(IPPROTO_IPV6, ACE_RECVPKTINFO6, &sockopt, sizeof sockopt) == -1) {
ACE_ERROR((LM_ERROR,
ACE_TEXT("(%P|%t) setsockopt failed\n")));
- return;
+ return 0;
} else {
ACE_DEBUG((LM_DEBUG,
ACE_TEXT("(%P|%t) setsockopt succeeded\n")));