Skip to content

Commit

Permalink
signal: uclibc use c_uint type
Browse files Browse the repository at this point in the history
Signed-off-by: Xiaobo Liu <cppcoffee@gmail.com>
  • Loading branch information
cppcoffee committed Sep 15, 2024
1 parent 062211b commit b4a6b4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sys/signal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ cfg_if! {
if #[cfg(target_os = "redox")] {
type SaFlags_t = libc::c_ulong;
} else if #[cfg(target_env = "uclibc")] {
type SaFlags_t = libc::c_ulong;
type SaFlags_t = libc::c_uint;
} else {
type SaFlags_t = libc::c_int;
}
Expand Down

0 comments on commit b4a6b4e

Please sign in to comment.