aboutsummaryrefslogtreecommitdiffstats
path: root/mcgoron/guix/patches
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2025-08-16 22:17:12 -0400
committerGravatar Peter McGoron 2025-08-16 22:17:47 -0400
commit75c6f8ac409aa3484f3e6265af07494e3967285c (patch)
tree0a1f18bd954c8beb22c4d51d3201220e59d96b90 /mcgoron/guix/patches
parenttr7 (diff)
mosh
Diffstat (limited to 'mcgoron/guix/patches')
-rw-r--r--mcgoron/guix/patches/mosh-0.2.9-rc1-fix-ffitest.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/mcgoron/guix/patches/mosh-0.2.9-rc1-fix-ffitest.patch b/mcgoron/guix/patches/mosh-0.2.9-rc1-fix-ffitest.patch
new file mode 100644
index 0000000..a6bcab4
--- /dev/null
+++ b/mcgoron/guix/patches/mosh-0.2.9-rc1-fix-ffitest.patch
@@ -0,0 +1,13 @@
+diff --git a/src/ffitest.c b/src/ffitest.c
+index 84b4b854..53e3e19c 100644
+--- a/src/ffitest.c
++++ b/src/ffitest.c
+@@ -235,7 +235,7 @@ void qsort(void *base, size_t num, size_t size,
+ for (i = 0; i < num; i++) {
+ printf("[%d]=%d\n", i, ((uint8_t*)base)[i]);
+ }
+- compare(1, 2);
++ compare((const void *)1, (const void *)2);
+ }
+
+ /* callouts return type functions */