]> granicus.if.org Git - python/commitdiff
Fix a build problem introduced by r42230.
authorHye-Shik Chang <hyeshik@gmail.com>
Sun, 19 Feb 2006 16:22:22 +0000 (16:22 +0000)
committerHye-Shik Chang <hyeshik@gmail.com>
Sun, 19 Feb 2006 16:22:22 +0000 (16:22 +0000)
Modules/posixmodule.c

index bd5c32ad4e37df76909c9c92d6174696605f2cc3..4a482fcc21a0be29a6db056a18567682b362fefd 100644 (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