Skip to content

Commit 56234f6

Browse files
committed
correct arm c_long size
1 parent f328dd7 commit 56234f6

File tree

1 file changed

+2
-2
lines changed
  • src/unix/bsd/netbsdlike/openbsd

1 file changed

+2
-2
lines changed

src/unix/bsd/netbsdlike/openbsd/arm.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
pub type c_long = i64;
2-
pub type c_ulong = u64;
1+
pub type c_long = i32;
2+
pub type c_ulong = u32;
33
pub type c_char = u8;
44

55
// should be pub(crate), but that requires Rust 1.18.0

0 commit comments

Comments
 (0)