summaryrefslogtreecommitdiff
path: root/crypto/cipher/e_chacha20poly1305.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/cipher/e_chacha20poly1305.c')
-rw-r--r--crypto/cipher/e_chacha20poly1305.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/cipher/e_chacha20poly1305.c b/crypto/cipher/e_chacha20poly1305.c
index 8b6d378..e656cd7 100644
--- a/crypto/cipher/e_chacha20poly1305.c
+++ b/crypto/cipher/e_chacha20poly1305.c
@@ -217,4 +217,6 @@ static const EVP_AEAD aead_chacha20_poly1305 = {
aead_chacha20_poly1305_seal, aead_chacha20_poly1305_open,
};
-const EVP_AEAD *EVP_aead_chacha20_poly1305() { return &aead_chacha20_poly1305; }
+const EVP_AEAD *EVP_aead_chacha20_poly1305(void) {
+ return &aead_chacha20_poly1305;
+}