Fixed parameter type for notify function pointer parameter to gl_extensions_add
authorTed Jump <tjump@users.sourceforge.net>
Wed, 13 Oct 1999 22:09:09 +0000 (22:09 +0000)
committerTed Jump <tjump@users.sourceforge.net>
Wed, 13 Oct 1999 22:09:09 +0000 (22:09 +0000)
src/mesa/main/extensions.c

index c1c29c4735193a8389b3a00737b20a7b952a287e..377b22b7c06f4b6a7af3c19e363c44713c7d195d 100644 (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;