Skip to content

Commit e49123e

Browse files
cppcoffeetgross35
authored andcommitted
uclibc/mips: fixed SA_* mismatched types
Signed-off-by: Xiaobo Liu <[email protected]> (backport <rust-lang#3211>) (cherry picked from commit e8f54bb)
1 parent 3f6dd37 commit e49123e

File tree

1 file changed

+4
-4
lines changed
  • src/unix/linux_like/linux/uclibc/mips

1 file changed

+4
-4
lines changed

src/unix/linux_like/linux/uclibc/mips/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ pub const ECOMM: ::c_int = 70;
2323
pub const EPROTO: ::c_int = 71;
2424
pub const EDOTDOT: ::c_int = 73;
2525

26-
pub const SA_NODEFER: ::c_int = 0x40000000;
27-
pub const SA_RESETHAND: ::c_int = 0x80000000;
28-
pub const SA_RESTART: ::c_int = 0x10000000;
29-
pub const SA_NOCLDSTOP: ::c_int = 0x00000001;
26+
pub const SA_NODEFER: ::c_uint = 0x40000000;
27+
pub const SA_RESETHAND: ::c_uint = 0x80000000;
28+
pub const SA_RESTART: ::c_uint = 0x10000000;
29+
pub const SA_NOCLDSTOP: ::c_uint = 0x00000001;
3030

3131
pub const EPOLL_CLOEXEC: ::c_int = 0x80000;
3232

0 commit comments

Comments
 (0)