mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-04 17:00:11 -05:00
fixed a function declaration with a void parameter
This commit is contained in:
parent
2d21a2121c
commit
5626482e82
2
msi.c
2
msi.c
@ -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);
|
||||
|
||||
|
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user