Skip to content

Commit

Permalink
Auto merge of #2326 - devnexen:signal_stack_dfbsd, r=Amanieu
Browse files Browse the repository at this point in the history
dragonflybsd readjust stack_t stack type had been void pointer since …

…2019 causing issue in some crates.
  • Loading branch information
bors committed Aug 8, 2021
2 parents 08ff18d + 02922ef commit a5b9654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/bsd/freebsdlike/dragonfly/mod.rs
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 a5b9654

Please sign in to comment.