Fix a build problem introduced by r42230.

This commit is contained in:
Hye-Shik Chang 2006-02-19 16:22:22 +00:00
parent e810fe2ca4
commit d69e034571

View file

@ -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