[Python-checkins] python/dist/src/Modules posixmodule.c, 2.338, 2.339

loewis@users.sourceforge.net loewis at users.sourceforge.net
Sun Aug 14 23:42:44 CEST 2005


Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30605/Modules

Modified Files:
	posixmodule.c 
Log Message:
Correct definition of ST_GEN_IDX.


Index: posixmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/posixmodule.c,v
retrieving revision 2.338
retrieving revision 2.339
diff -u -d -r2.338 -r2.339
--- posixmodule.c	9 Aug 2005 15:00:59 -0000	2.338
+++ posixmodule.c	14 Aug 2005 21:42:34 -0000	2.339
@@ -740,9 +740,9 @@
 #endif
 
 #ifdef HAVE_STRUCT_STAT_ST_GEN
-#define ST_GEN_IDX (ST_RDEV_IDX+1)
+#define ST_GEN_IDX (ST_FLAGS_IDX+1)
 #else
-#define ST_GEN_IDX ST_RDEV_IDX
+#define ST_GEN_IDX ST_FLAGS_IDX
 #endif
 
 #ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME



More information about the Python-checkins mailing list