[pypy-commit] cffi cffi-1.0: Merge fix

arigo noreply at buildbot.pypy.org
Fri Aug 2 17:37:32 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: cffi-1.0
Changeset: r1343:d4d857462b18
Date: 2013-08-02 17:36 +0200
http://bitbucket.org/cffi/cffi/changeset/d4d857462b18/

Log:	Merge fix

diff --git a/c/test_c.py b/c/test_c.py
--- a/c/test_c.py
+++ b/c/test_c.py
@@ -2739,7 +2739,7 @@
     assert list(c) == [0, 40, 50, 30, 0]
 
 def test_FILE_forbidden():
-    BFILE = new_struct_type("_IO_FILE")
+    BFILE = new_struct_type("struct _IO_FILE")
     BFILEP = new_pointer_type(BFILE)
     BFunc = new_function_type((BFILEP,), BFILEP, False)
     func = cast(BFunc, 0)


More information about the pypy-commit mailing list