[pypy-svn] r64483 - pypy/trunk/pypy/rpython/module

afa at codespeak.net afa at codespeak.net
Tue Apr 21 03:53:10 CEST 2009


Author: afa
Date: Tue Apr 21 03:53:09 2009
New Revision: 64483

Modified:
   pypy/trunk/pypy/rpython/module/ll_os.py
Log:
translation fix


Modified: pypy/trunk/pypy/rpython/module/ll_os.py
==============================================================================
--- pypy/trunk/pypy/rpython/module/ll_os.py	(original)
+++ pypy/trunk/pypy/rpython/module/ll_os.py	Tue Apr 21 03:53:09 2009
@@ -397,8 +397,7 @@
                 mtime = lltype.malloc(rwin32.FILETIME, flavor='raw')
                 try:
                     if tp is None:
-                        now = lltype.malloc(lltype.Ptr(rwin32.SYSTEMTIME),
-                                            flavor='raw')
+                        now = lltype.malloc(rwin32.SYSTEMTIME, flavor='raw')
                         try:
                             GetSystemTime(now)
                             if (not SystemTimeToFileTime(now, atime) or



More information about the Pypy-commit mailing list