diff options
author | Ted Jump <[email protected]> | 1999-10-13 22:09:09 +0000 |
---|---|---|
committer | Ted Jump <[email protected]> | 1999-10-13 22:09:09 +0000 |
commit | 56a5f8820ff2b441174fc10982d8f9b4b59ab8d5 (patch) | |
tree | 968d2e993cfca168b9726b4f939c3d4922daa5d7 /src | |
parent | 645091749687fcd279db5dfd7f02106e660d25c4 (diff) |
Fixed parameter type for notify function pointer parameter to gl_extensions_add
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/extensions.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |