summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>2019-09-11 10:25:43 +0200
committerDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>2019-09-11 10:32:03 +0200
commitc3656cc594daac8167721dde7220f0e59ae146fc (patch)
tree4743b00cf337e1a75a404158ab09eb405a413a25
parent5c184ff280ee042e3b7e07701b61adbcbe2958d7 (diff)
crypto/threads_none.c: fix syntax error in openssl_get_fork_id()
Fixes #9858 Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9860)
-rw-r--r--crypto/threads_none.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/threads_none.c b/crypto/threads_none.c
index aabf0e0dc0..aaaaae872a 100644
--- a/crypto/threads_none.c
+++ b/crypto/threads_none.c
@@ -143,7 +143,7 @@ int openssl_get_fork_id(void)
# if defined(OPENSSL_SYS_UNIX)
return getpid();
# else
- return return 0;
+ return 0;
# endif
}
#endif