From: Dr. Matthias St. Pierre Date: Wed, 11 Sep 2019 08:25:43 +0000 (+0200) Subject: crypto/threads_none.c: fix syntax error in openssl_get_fork_id() X-Git-Tag: OpenSSL_1_1_1e~227 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c3656cc594daac8167721dde7220f0e59ae146fc;p=oweals%2Fopenssl.git crypto/threads_none.c: fix syntax error in openssl_get_fork_id() Fixes #9858 Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/9860) --- 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