[pypy-commit] pypy ffistruct: fix the result of a bad rebase

antocuni noreply at buildbot.pypy.org
Wed Sep 7 16:53:05 CEST 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: ffistruct
Changeset: r47145:4906bb0ec80b
Date: 2011-09-07 16:52 +0200
http://bitbucket.org/pypy/pypy/changeset/4906bb0ec80b/

Log:	fix the result of a bad rebase

diff --git a/pypy/module/_ffi/interp_struct.py b/pypy/module/_ffi/interp_struct.py
--- a/pypy/module/_ffi/interp_struct.py
+++ b/pypy/module/_ffi/interp_struct.py
@@ -73,7 +73,7 @@
         field_types.append(w_field.w_ffitype.ffitype)
     #
     ffistruct = clibffi.make_struct_ffitype_e(size, alignment, field_types)
-    return W__StructDescr(name, fields_w, ffistruct)
+    return W__StructDescr(space, name, fields_w, ffistruct)
 
 
 


More information about the pypy-commit mailing list