Fallout - change array syntax to use ;

This commit is contained in:
Nick Cameron
2014-12-30 21:19:41 +13:00
parent 57a74eda88
commit 7e2b9ea235
66 changed files with 223 additions and 222 deletions

View File

@@ -184,12 +184,12 @@ mod imp {
#[cfg(target_word_size = "32")]
#[repr(C)]
pub struct sigset_t {
__val: [libc::c_ulong, ..32],
__val: [libc::c_ulong; 32],
}
#[cfg(target_word_size = "64")]
#[repr(C)]
pub struct sigset_t {
__val: [libc::c_ulong, ..16],
__val: [libc::c_ulong; 16],
}
#[repr(C)]