fix bug in stat, move lstat64 back to unix

This commit is contained in:
Mark McCaskey
2019-04-08 11:26:25 -07:00
parent 09a207364b
commit b3a765446a
4 changed files with 22 additions and 20 deletions

View File

@ -125,7 +125,7 @@ pub struct GuestStat {
st_atime: u64,
st_mtime: u64,
st_ctime: u64,
st_ino: u64,
st_ino: u32,
}
#[allow(clippy::cast_ptr_alignment)]