1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
Description: Fix FTBFS with GCC-15.
Bug-Debian: https://bugs.debian.org/1097525
Author: Yavor Doganov <yavor@gnu.org>
Forwarded: no
Last-Update: 2025-09-22
---
--- openvpn-auth-ldap.orig/tools/lemon.c
+++ openvpn-auth-ldap/tools/lemon.c
@@ -59,12 +59,12 @@
static struct action *Action_sort(struct action *);
/********** From the file "build.h" ************************************/
-void FindRulePrecedences();
-void FindFirstSets();
-void FindStates();
-void FindLinks();
-void FindFollowSets();
-void FindActions();
+void FindRulePrecedences(struct lemon *);
+void FindFirstSets(struct lemon *);
+void FindStates(struct lemon *);
+void FindLinks(struct lemon *);
+void FindFollowSets(struct lemon *);
+void FindActions(struct lemon *);
/********* From the file "configlist.h" *********************************/
void Configlist_init(void);
|