From: Ted Jump Date: Wed, 13 Oct 1999 22:09:09 +0000 (+0000) Subject: Fixed parameter type for notify function pointer parameter to gl_extensions_add X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=56a5f8820ff2b441174fc10982d8f9b4b59ab8d5;p=mesa.git Fixed parameter type for notify function pointer parameter to gl_extensions_add --- diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index c1c29c47351..377b22b7c06 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -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;