From 3ee0c08ad3c5c64d20a64f7b12271e2128f57bd9 Mon Sep 17 00:00:00 2001 From: tb Date: Sat, 30 Dec 2023 18:24:09 +0000 Subject: [PATCH] Some Australians don't like voids either --- lib/libcrypto/evp/e_chacha20poly1305.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/libcrypto/evp/e_chacha20poly1305.c b/lib/libcrypto/evp/e_chacha20poly1305.c index 362e68dc99c..796824aeeb8 100644 --- a/lib/libcrypto/evp/e_chacha20poly1305.c +++ b/lib/libcrypto/evp/e_chacha20poly1305.c @@ -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 @@ -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; } -- 2.20.1