summaryrefslogtreecommitdiff
path: root/crypto/apr_crypto_openssl.c
diff options
context:
space:
mode:
authorsf <sf@13f79535-47bb-0310-9956-ffa450edef68>2011-05-29 07:30:21 +0000
committersf <sf@13f79535-47bb-0310-9956-ffa450edef68>2011-05-29 07:30:21 +0000
commit2e3d912d11397928e184b74b315b7af7d738d0ef (patch)
tree4f316efdace663e361002fec07852e47c0c82081 /crypto/apr_crypto_openssl.c
parent652c1ed2cb5a87d85a2d395fb1aea5fbeb231962 (diff)
downloadlibapr-2e3d912d11397928e184b74b315b7af7d738d0ef.tar.gz
Fix compilation with C90
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@1128838 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'crypto/apr_crypto_openssl.c')
-rw-r--r--crypto/apr_crypto_openssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/apr_crypto_openssl.c b/crypto/apr_crypto_openssl.c
index 32e65d9c4..ade9ada90 100644
--- a/crypto/apr_crypto_openssl.c
+++ b/crypto/apr_crypto_openssl.c
@@ -80,7 +80,7 @@ static apr_status_t crypto_error(const apu_err_t **result, const apr_crypto_t *f
/**
* Shutdown the crypto library and release resources.
*/
-static apr_status_t crypto_shutdown() {
+static apr_status_t crypto_shutdown(void) {
ERR_free_strings();
EVP_cleanup();
ENGINE_cleanup();