From: Jouni Malinen Date: Sat, 22 Feb 2025 09:01:40 +0000 (+0200) Subject: OpenSSL: Use proper ANSI C function declaration X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6dcc4c79547a5bc1f6ddb73c9f91437f74ea2571;p=thirdparty%2Fhostap.git OpenSSL: Use proper ANSI C function declaration Signed-off-by: Jouni Malinen --- diff --git a/src/crypto/crypto_openssl.c b/src/crypto/crypto_openssl.c index 2d8ff60aa..3a4d07175 100644 --- a/src/crypto/crypto_openssl.c +++ b/src/crypto/crypto_openssl.c @@ -4248,7 +4248,7 @@ fail: } -struct crypto_csr * crypto_csr_init() +struct crypto_csr * crypto_csr_init(void) { return (struct crypto_csr *)X509_REQ_new(); }