vfs: fix i386 build after r341220

This commit is contained in:
Mateusz Guzik 2018-11-29 09:54:27 +00:00
parent 22443809ff
commit 1f6ad48c76
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=341223

View File

@ -2302,10 +2302,10 @@ kern_statat(struct thread *td, int flag, int fd, const char *path,
if (error != 0)
return (error);
#ifdef __STAT_TIME_T_EXT
sb.st_atim_ext = 0;
sb.st_mtim_ext = 0;
sb.st_ctim_ext = 0;
sb.st_btim_ext = 0;
sbp->st_atim_ext = 0;
sbp->st_mtim_ext = 0;
sbp->st_ctim_ext = 0;
sbp->st_btim_ext = 0;
#endif
#ifdef KTRACE
if (KTRPOINT(td, KTR_STRUCT))