fixed a function declaration with a void parameter

This commit is contained in:
olszomal 2023-09-07 11:51:14 +02:00 committed by Michał Trojnara
parent 2d21a2121c
commit 5626482e82
2 changed files with 2 additions and 2 deletions

2
msi.c
View File

@ -1839,7 +1839,7 @@ static char *msi_dirent_get(MSI_ENTRY *entry)
return data;
}
static char *msi_unused_dirent_get()
static char *msi_unused_dirent_get(void)
{
char *data = OPENSSL_malloc(DIRENT_SIZE);

View File

@ -3331,7 +3331,7 @@ static ENGINE *engine_dynamic(GLOBAL_OPTIONS *options)
* [in] none
* [returns] pointer to ENGINE
*/
static ENGINE *engine_pkcs11()
static ENGINE *engine_pkcs11(void)
{
ENGINE *engine = ENGINE_by_id("pkcs11");
if (!engine) {