[Python-checkins] r42499 - python/trunk/Modules/posixmodule.c

hyeshik.chang python-checkins at python.org
Sun Feb 19 17:22:23 CET 2006


Author: hyeshik.chang
Date: Sun Feb 19 17:22:22 2006
New Revision: 42499

Modified:
   python/trunk/Modules/posixmodule.c
Log:
Fix a build problem introduced by r42230.


Modified: python/trunk/Modules/posixmodule.c
==============================================================================
--- python/trunk/Modules/posixmodule.c	(original)
+++ python/trunk/Modules/posixmodule.c	Sun Feb 19 17:22:22 2006
@@ -1114,7 +1114,7 @@
 	  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


More information about the Python-checkins mailing list