[Python-checkins] r42871 - python/trunk/PC/pyconfig.h

martin.v.loewis python-checkins at python.org
Mon Mar 6 17:32:08 CET 2006


Author: martin.v.loewis
Date: Mon Mar  6 17:32:05 2006
New Revision: 42871

Modified:
   python/trunk/PC/pyconfig.h
Log:
lower-case time_t.

Modified: python/trunk/PC/pyconfig.h
==============================================================================
--- python/trunk/PC/pyconfig.h	(original)
+++ python/trunk/PC/pyconfig.h	Mon Mar  6 17:32:05 2006
@@ -276,7 +276,7 @@
 #	define SIZEOF_FPOS_T 8
 #	define SIZEOF_HKEY 4
 #	define SIZEOF_SIZE_T 4
-	/* MS VS2005 changes TIME_T to an 64-bit type on all platforms */
+	/* MS VS2005 changes time_t to an 64-bit type on all platforms */
 #	if defined(_MSC_VER) && _MSC_VER >= 1400
 #	define SIZEOF_TIME_T 8
 #	else


More information about the Python-checkins mailing list