Author: Antonio Cuni <[email protected]>
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)
 
 
 
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to