Skip to content

Commit

Permalink
dragonflybsd readjust stack_t stack type had been void pointer since …
Browse files Browse the repository at this point in the history
…2019 causing issue in some crates.
  • Loading branch information
devnexen committed Aug 8, 2021
1 parent 08ff18d commit 02922ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/bsd/freebsdlike/dragonfly/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
Expand Down

0 comments on commit 02922ef

Please sign in to comment.