Skip to content

Commit b4a6b4e

Browse files
committed
signal: uclibc use c_uint type
Signed-off-by: Xiaobo Liu <[email protected]>
1 parent 062211b commit b4a6b4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/sys/signal.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ cfg_if! {
414414
if #[cfg(target_os = "redox")] {
415415
type SaFlags_t = libc::c_ulong;
416416
} else if #[cfg(target_env = "uclibc")] {
417-
type SaFlags_t = libc::c_ulong;
417+
type SaFlags_t = libc::c_uint;
418418
} else {
419419
type SaFlags_t = libc::c_int;
420420
}

0 commit comments

Comments
 (0)