Skip to content

Commit 824a928

Browse files
committed
Fix build on Android
1 parent 8e2e0ee commit 824a928

File tree

1 file changed

+1
-1
lines changed
  • src/libstd/sys/unix

1 file changed

+1
-1
lines changed

src/libstd/sys/unix/c.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ mod signal_os {
202202
// support it. Android for AArch64 technically has a structure of a
203203
// single ulong.
204204
#[cfg(target_os = "android")]
205-
pub type sigset_t = libc::ulong;
205+
pub type sigset_t = libc::c_ulong;
206206

207207
#[cfg(any(target_arch = "x86",
208208
target_arch = "x86_64",

0 commit comments

Comments
 (0)