diff --git a/steps-guix/guile-2.2.4/patches/fix-sendfile-offset-pointer-type.patch b/steps-guix/guile-2.2.4/patches/fix-sendfile-offset-pointer-type.patch new file mode 100644 index 00000000..be1d7d76 --- /dev/null +++ b/steps-guix/guile-2.2.4/patches/fix-sendfile-offset-pointer-type.patch @@ -0,0 +1,12 @@ +diff -ru guile-2.2.4/libguile/filesys.c guile-2.2.4/libguile/filesys.c +--- guile-2.2.4/libguile/filesys.c ++++ guile-2.2.4/libguile/filesys.c +@@ -1135,7 +1135,7 @@ + + ssize_t result SCM_UNUSED; + size_t c_count, total = 0; +- scm_t_off c_offset; ++ off_t c_offset; + int in_fd, out_fd; + + VALIDATE_FD_OR_PORT (out_fd, out, 1);