mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
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:
parent
3605137656
commit
1ea488deee
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue