Modify () to (void), since that's what is actually defined in the

engine structure, and some ANSI C compilers will complain otherwise.
This commit is contained in:
Richard Levitte
2000-11-14 15:33:06 +00:00
parent cd1bf28e2c
commit 159564ae9f
4 changed files with 8 additions and 8 deletions

View File

@@ -376,7 +376,7 @@ static void release_context(HWCryptoHook_ContextHandle hac)
}
/* (de)initialisation functions. */
static int hwcrhk_init()
static int hwcrhk_init(void)
{
HWCryptoHook_Init_t *p1;
HWCryptoHook_Finish_t *p2;
@@ -475,7 +475,7 @@ err:
return 0;
}
static int hwcrhk_finish()
static int hwcrhk_finish(void)
{
int to_return = 1;
if(hwcrhk_dso == NULL)