Skip to content

Commit 02922ef

Browse files
committed
dragonflybsd readjust stack_t stack type had been void pointer since 2019 causing issue in some crates.
1 parent 08ff18d commit 02922ef

File tree

1 file changed

+1
-1
lines changed
  • src/unix/bsd/freebsdlike/dragonfly

1 file changed

+1
-1
lines changed

src/unix/bsd/freebsdlike/dragonfly/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ s! {
189189
}
190190

191191
pub struct stack_t {
192-
pub ss_sp: *mut ::c_char,
192+
pub ss_sp: *mut ::c_void,
193193
pub ss_size: ::size_t,
194194
pub ss_flags: ::c_int,
195195
}

0 commit comments

Comments
 (0)