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

@@ -251,7 +251,7 @@ static void release_context(SW_CONTEXT_HANDLE hac)
}
/* (de)initialisation functions. */
static int cswift_init()
static int cswift_init(void)
{
SW_CONTEXT_HANDLE hac;
t_swAcquireAccContext *p1;
@@ -308,7 +308,7 @@ err:
return 0;
}
static int cswift_finish()
static int cswift_finish(void)
{
if(cswift_dso == NULL)
{