gentoo-ebuilds/games-puzzle/xtris/files/xtris-1.15-gcc15.patch
Alexey Sokolov f1f66b5d7d
games-puzzle/xtris: fix build with gcc15
Closes: https://bugs.gentoo.org/943783
Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org>
Part-of: https://github.com/gentoo/gentoo/pull/42148
Closes: https://github.com/gentoo/gentoo/pull/42148
Signed-off-by: Sam James <sam@gentoo.org>
2025-05-21 22:13:50 +01:00

13 lines
237 B
Diff

https://bugs.gentoo.org/943783
--- a/xtris.c
+++ b/xtris.c
@@ -2731,7 +2731,7 @@ void connect2server(char *h) {
}
}
-void sigchld() {
+void sigchld(int a) {
#ifdef NeXT
while (wait3(NULL, WNOHANG|WUNTRACED, NULL) > 0);
#else