1
Fork 0

Fix some tests for linux gnux32

This commit is contained in:
Marco A L Barbosa 2017-10-19 15:49:59 -02:00
parent dbcd1bec61
commit e57ee3d0bf
7 changed files with 16 additions and 16 deletions

View file

@ -60,7 +60,7 @@ impl Timespec {
Timespec {
t: libc::timespec {
tv_sec: secs,
tv_nsec: nsec as libc::c_long,
tv_nsec: nsec as _,
},
}
}
@ -83,7 +83,7 @@ impl Timespec {
Timespec {
t: libc::timespec {
tv_sec: secs,
tv_nsec: nsec as libc::c_long,
tv_nsec: nsec as _,
},
}
}