From: Hye-Shik Chang Date: Sun, 19 Feb 2006 16:22:22 +0000 (+0000) Subject: Fix a build problem introduced by r42230. X-Git-Tag: v2.5a0~589 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d69e0345717800826ee49d7234c48d333e75c2f0;p=python Fix a build problem introduced by r42230. --- 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