diff options
author | Hye-Shik Chang <hyeshik@gmail.com> | 2006-02-19 16:22:22 (GMT) |
---|---|---|
committer | Hye-Shik Chang <hyeshik@gmail.com> | 2006-02-19 16:22:22 (GMT) |
commit | d69e0345717800826ee49d7234c48d333e75c2f0 (patch) | |
tree | ad531edb99b9855d8146535e4a1379094e330628 | |
parent | e810fe2ca4374431ee817826f5f87b8945894261 (diff) | |
download | cpython-d69e0345717800826ee49d7234c48d333e75c2f0.zip cpython-d69e0345717800826ee49d7234c48d333e75c2f0.tar.gz cpython-d69e0345717800826ee49d7234c48d333e75c2f0.tar.bz2 |
Fix a build problem introduced by r42230.
-rw-r--r-- | Modules/posixmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index bd5c32a..4a482fc 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -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 |