aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatarLibravatar daurnimator <quae@daurnimator.com> 2017-09-02 04:02:16 +1000
committerLibravatarLibravatar daurnimator <quae@daurnimator.com> 2017-09-02 04:02:16 +1000
commit9893561539fbbe65d5fb11a570e4c533fcd454ce (patch)
treeea64e7260673058430bc82b54acef37d5f5fa5d6
parentd06f504deb34bc49f7935f386508217270e1bcb7 (diff)
downloadluaossl-9893561539fbbe65d5fb11a570e4c533fcd454ce.tar.gz
luaossl-9893561539fbbe65d5fb11a570e4c533fcd454ce.tar.bz2
luaossl-9893561539fbbe65d5fb11a570e4c533fcd454ce.zip
Fix warning about incorrect number of macro arguments
-rw-r--r--src/openssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openssl.c b/src/openssl.c
index 80d3dfe..04833a5 100644
--- a/src/openssl.c
+++ b/src/openssl.c
@@ -1497,7 +1497,7 @@ static EVP_CIPHER_CTX *compat_EVP_CIPHER_CTX_new(void) {
#endif
#if !HAVE_EVP_MD_CTX_NEW
-#define EVP_MD_CTX_new(md) EVP_MD_CTX_create()
+#define EVP_MD_CTX_new() EVP_MD_CTX_create()
#endif
#if !HAVE_EVP_PKEY_ID