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

antocuni at codespeak.net antocuni at codespeak.net
Tue Nov 20 10:18:17 CET 2007


Author: antocuni
Date: Tue Nov 20 10:18:15 2007
New Revision: 48807

Modified:
   pypy/dist/pypy/rpython/module/ll_os_environ.py
Log:
fix SyntaxError



Modified: pypy/dist/pypy/rpython/module/ll_os_environ.py
==============================================================================
--- pypy/dist/pypy/rpython/module/ll_os_environ.py	(original)
+++ pypy/dist/pypy/rpython/module/ll_os_environ.py	Tue Nov 20 10:18:15 2007
@@ -132,7 +132,7 @@
 # Access to the 'environ' external variable
 
 if sys.platform.startswith('darwin'):
-    CCHARPPP = rffi.CArrayPtr(rffi.CCHARPP))
+    CCHARPPP = rffi.CArrayPtr(rffi.CCHARPP)
     _os_NSGetEnviron = rffi.llexternal('_NSGetEnviron', [], CCHARPPP,
                                        includes=['crt_externs.h'])
     def os_get_environ():


More information about the pypy-svn mailing list