1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Fix FTBFS with GCC 15
Author: Adrian Bunk <bunk@debian.org>
Bug-Debian: https://bugs.debian.org/1096800
Origin: upstream, https://github.com/fpco/haskell-filesystem/commit/84390e988758b79848c38bc569b3764677715d4e
--- haskell-system-fileio-0.3.16.4.orig/lib/hssystemfileio-unix.h
+++ haskell-system-fileio-0.3.16.4/lib/hssystemfileio-unix.h
@@ -4,7 +4,7 @@
struct dirent;
struct dirent *
-hssystemfileio_alloc_dirent();
+hssystemfileio_alloc_dirent(void *void_dir);
void
hssystemfileio_free_dirent(struct dirent *);
|