crypto/threads_none.c: fix syntax error in openssl_get_fork_id()
authorDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
Wed, 11 Sep 2019 08:25:43 +0000 (10:25 +0200)
committerDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
Wed, 11 Sep 2019 08:32:03 +0000 (10:32 +0200)
Fixes #9858

Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9860)

crypto/threads_none.c

index aabf0e0dc090b4823fe666d2abe8e2402572a279..aaaaae872a9b058f9c8073a065890300dc555f8c 100644 (file)
@@ -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