Fixed parameter type for notify function pointer parameter to gl_extensions_add

This commit is contained in:
Ted Jump 1999-10-13 22:09:09 +00:00
parent 6450917496
commit 56a5f8820f
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $Id: extensions.c,v 1.7 1999/10/13 18:42:50 brianp Exp $ */
/* $Id: extensions.c,v 1.8 1999/10/13 22:09:09 tjump Exp $ */
/*
* Mesa 3-D graphics library
@ -76,7 +76,7 @@ static struct { int enabled; const char *name; } default_extensions[] = {
int gl_extensions_add( GLcontext *ctx,
int state,
const char *name,
void (*notify)() )
void (*notify)(void) )
{
(void) notify;