[pypy-svn] r30175 - pypy/dist/pypy/module/rctime

rhymes at codespeak.net rhymes at codespeak.net
Tue Jul 18 16:52:19 CEST 2006


Author: rhymes
Date: Tue Jul 18 16:52:16 2006
New Revision: 30175

Modified:
   pypy/dist/pypy/module/rctime/interp_time.py
Log:
size_t not time_t

Modified: pypy/dist/pypy/module/rctime/interp_time.py
==============================================================================
--- pypy/dist/pypy/module/rctime/interp_time.py	(original)
+++ pypy/dist/pypy/module/rctime/interp_time.py	Tue Jul 18 16:52:16 2006
@@ -25,7 +25,7 @@
     CLOCKS_PER_SEC = ctypes_platform.ConstantInteger("CLOCKS_PER_SEC")
     clock_t = ctypes_platform.SimpleType("clock_t", c_ulong)
     time_t = ctypes_platform.SimpleType("time_t", c_long)
-    size_t = ctypes_platform.SimpleType("time_t", c_long)
+    size_t = ctypes_platform.SimpleType("size_t", c_long)
 
 class cConfig:
     pass



More information about the Pypy-commit mailing list