From d69e0345717800826ee49d7234c48d333e75c2f0 Mon Sep 17 00:00:00 2001 From: Hye-Shik Chang Date: Sun, 19 Feb 2006 16:22:22 +0000 Subject: Fix a build problem introduced by r42230. --- Modules/posixmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v0.12