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

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) {