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 18:54:39 +0900 |
| commit | 58b5bd4d8beb35eba82995ab43d475902ba2b5bd (patch) | |
| tree | ae6993750cb0dca412b3862f7bd881d27aca348c | |
| parent | 42a0c2b1d95cafb4bc81dec63354f609024f20d5 (diff) | |
| download | tellico-58b5bd4d.tar.gz tellico-58b5bd4d.zip | |
Fix FTBFS with gcc 15. This resolves issue #28
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 0ed59f2f132ebbe7b340ea93ea1de240e712473e)
| -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 *); |
