util.crypto: Preemptively silence 'strict-prototypes' warning

With `gcc-12 -Wstrict-prototypes` the following warning is shown:

crypto.c:43:13: warning: function declaration isn't a prototype [-Wstrict-prototypes]
   43 | static BIO* new_memory_BIO() {
      |             ^~~~~~~~~~~~~~
This commit is contained in:
Kim Alvefur 2023-01-31 16:27:55 +01:00
parent 3605137656
commit 1ea488deee

View file

@ -40,7 +40,7 @@ typedef unsigned __int32 uint32_t;
#define PKEY_MT_TAG "util.crypto key"
static BIO* new_memory_BIO() {
static BIO* new_memory_BIO(void) {
return BIO_new(BIO_s_mem());
}