From 02922ef7504906589d02c2e4d97d1172fa247cc3 Mon Sep 17 00:00:00 2001 From: DC Date: Sun, 8 Aug 2021 14:43:01 +0100 Subject: [PATCH] dragonflybsd readjust stack_t stack type had been void pointer since 2019 causing issue in some crates. --- src/unix/bsd/freebsdlike/dragonfly/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/bsd/freebsdlike/dragonfly/mod.rs b/src/unix/bsd/freebsdlike/dragonfly/mod.rs index 02e7a8af06e2d..7a620f38861e7 100644 --- a/src/unix/bsd/freebsdlike/dragonfly/mod.rs +++ b/src/unix/bsd/freebsdlike/dragonfly/mod.rs @@ -189,7 +189,7 @@ s! { } pub struct stack_t { - pub ss_sp: *mut ::c_char, + pub ss_sp: *mut ::c_void, pub ss_size: ::size_t, pub ss_flags: ::c_int, }