From: tb Date: Sat, 30 Dec 2023 18:24:09 +0000 (+0000) Subject: Some Australians don't like voids either X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=3ee0c08ad3c5c64d20a64f7b12271e2128f57bd9;p=openbsd Some Australians don't like voids either --- 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; }