mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Fix a build problem introduced by r42230.
This commit is contained in:
parent
e810fe2ca4
commit
d69e034571
1 changed files with 1 additions and 1 deletions
|
@ -1114,7 +1114,7 @@ _pystat_fromstructstat(STRUCT_STAT *st)
|
|||
unsigned long bsec,bnsec;
|
||||
bsec = (long)st->st_birthtime;
|
||||
#ifdef HAVE_STAT_TV_NSEC2
|
||||
bnsec = st.st_birthtimespec->tv_nsec;
|
||||
bnsec = st->st_birthtimespec.tv_nsec;
|
||||
#else
|
||||
bnsec = 0;
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue