diff options
| author | Hye-Shik Chang <hyeshik@gmail.com> | 2006-02-19 16:22:22 +0000 |
|---|---|---|
| committer | Hye-Shik Chang <hyeshik@gmail.com> | 2006-02-19 16:22:22 +0000 |
| commit | d69e0345717800826ee49d7234c48d333e75c2f0 (patch) | |
| tree | ad531edb99b9855d8146535e4a1379094e330628 /Modules/posixmodule.c | |
| parent | e810fe2ca4374431ee817826f5f87b8945894261 (diff) | |
| download | cpython-git-d69e0345717800826ee49d7234c48d333e75c2f0.tar.gz | |
Fix a build problem introduced by r42230.
Diffstat (limited to 'Modules/posixmodule.c')
| -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 bd5c32ad4e..4a482fcc21 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 |
