diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-02-02 15:48:28 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-02-02 15:49:25 +0900 |
| commit | 0ed59f2f132ebbe7b340ea93ea1de240e712473e (patch) | |
| tree | 87682b75fa5877a55acb2137810fcbd67b358b4c /src | |
| parent | 82615f81e3c2831e8a15d2c4309b9c879ae9169b (diff) | |
| download | tellico-0ed59f2f132ebbe7b340ea93ea1de240e712473e.tar.gz tellico-0ed59f2f132ebbe7b340ea93ea1de240e712473e.zip | |
Fix FTBFS with gcc 15. This resolves issue #28
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src')
| -rw-r--r-- | src/translators/btparse/ast.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/translators/btparse/ast.h b/src/translators/btparse/ast.h index 59622ec..8608f22 100644 --- a/src/translators/btparse/ast.h +++ b/src/translators/btparse/ast.h @@ -89,7 +89,7 @@ extern AST *zzastStack[]; void zzlink(AST **, AST **, AST **); void zzsubchild(AST **, AST **, AST **); void zzsubroot(AST **, AST **, AST **); -void zzpre_ast(AST *, void (*)(), void (*)(), void (*)()); +void zzpre_ast(AST *, void (*)(AST *), void (*)(AST *), void (*)(AST *)); void zzfree_ast(AST *); AST *zztmake(AST *, ...); AST *zzdup_ast(AST *); |
