Some Australians don't like voids either
authortb <tb@openbsd.org>
Sat, 30 Dec 2023 18:24:09 +0000 (18:24 +0000)
committertb <tb@openbsd.org>
Sat, 30 Dec 2023 18:24:09 +0000 (18:24 +0000)
lib/libcrypto/evp/e_chacha20poly1305.c

index 362e68d..796824a 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: e_chacha20poly1305.c,v 1.33 2023/12/15 13:48:59 tb Exp $ */
+/* $OpenBSD: e_chacha20poly1305.c,v 1.34 2023/12/30 18:24:09 tb Exp $ */
 
 /*
  * Copyright (c) 2022 Joel Sing <jsing@openbsd.org>
@@ -345,7 +345,7 @@ static const EVP_AEAD aead_chacha20_poly1305 = {
 };
 
 const EVP_AEAD *
-EVP_aead_chacha20_poly1305()
+EVP_aead_chacha20_poly1305(void)
 {
        return &aead_chacha20_poly1305;
 }
@@ -363,7 +363,7 @@ static const EVP_AEAD aead_xchacha20_poly1305 = {
 };
 
 const EVP_AEAD *
-EVP_aead_xchacha20_poly1305()
+EVP_aead_xchacha20_poly1305(void)
 {
        return &aead_xchacha20_poly1305;
 }