Skip to content

Commit 5626482

Browse files
olszomalmtrojnar
authored andcommitted
fixed a function declaration with a void parameter
1 parent 2d21a21 commit 5626482

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

msi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1839,7 +1839,7 @@ static char *msi_dirent_get(MSI_ENTRY *entry)
18391839
return data;
18401840
}
18411841

1842-
static char *msi_unused_dirent_get()
1842+
static char *msi_unused_dirent_get(void)
18431843
{
18441844
char *data = OPENSSL_malloc(DIRENT_SIZE);
18451845

osslsigncode.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3331,7 +3331,7 @@ static ENGINE *engine_dynamic(GLOBAL_OPTIONS *options)
33313331
* [in] none
33323332
* [returns] pointer to ENGINE
33333333
*/
3334-
static ENGINE *engine_pkcs11()
3334+
static ENGINE *engine_pkcs11(void)
33353335
{
33363336
ENGINE *engine = ENGINE_by_id("pkcs11");
33373337
if (!engine) {

0 commit comments

Comments
 (0)