[pypy-svn] r47629 - pypy/dist/pypy/rpython/module

fijal at codespeak.net fijal at codespeak.net
Sat Oct 20 12:41:34 CEST 2007


Author: fijal
Date: Sat Oct 20 12:41:34 2007
New Revision: 47629

Modified:
   pypy/dist/pypy/rpython/module/ll_os.py
Log:
This wasn't typo after all. Still CConfig explodes (no idea why)


Modified: pypy/dist/pypy/rpython/module/ll_os.py
==============================================================================
--- pypy/dist/pypy/rpython/module/ll_os.py	(original)
+++ pypy/dist/pypy/rpython/module/ll_os.py	Sat Oct 20 12:41:34 2007
@@ -621,7 +621,7 @@
                 _includes_ = ['sys/types.h', 'dirent.h']
                 DIRENT = platform.Struct('struct dirent',
                     [('d_name', lltype.FixedSizeArray(rffi.CHAR, 1))])
-                DIRP = platform.COpaquePtr('DIRP')
+                DIRP = platform.COpaquePtr('DIR')
 
             config = platform.configure(CConfig)
             DIRENT = config['DIRENT']



More information about the Pypy-commit mailing list