Fix a function pointer declaration to silence the compiler.

This commit is contained in:
Brett Cannon 2008-01-17 18:45:10 +00:00
parent d221956f0e
commit a35a8b11c3

View file

@ -217,7 +217,7 @@ extern void ffi_call_STDCALL(void (*)(char *, extended_cif *),
#endif /* X86_WIN32 */
void ffi_call(/*@dependent@*/ ffi_cif *cif,
void (*fn)(),
void (*fn)(void),
/*@out@*/ void *rvalue,
/*@dependent@*/ void **avalue)
{