[pypy-commit] pypy default: as per precommondefs.h, all declarations need an attribute

mattip noreply at buildbot.pypy.org
Tue Nov 11 22:16:53 CET 2014


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r74465:3532a779652c
Date: 2014-11-11 23:11 -0600
http://bitbucket.org/pypy/pypy/changeset/3532a779652c/

Log:	as per precommondefs.h, all declarations need an attribute

diff --git a/pypy/module/test_lib_pypy/ctypes_tests/_ctypes_test.c b/pypy/module/test_lib_pypy/ctypes_tests/_ctypes_test.c
--- a/pypy/module/test_lib_pypy/ctypes_tests/_ctypes_test.c
+++ b/pypy/module/test_lib_pypy/ctypes_tests/_ctypes_test.c
@@ -316,8 +316,8 @@
 {
 }
 
-LONG_LONG last_tf_arg_s;
-unsigned LONG_LONG last_tf_arg_u;
+static LONG_LONG last_tf_arg_s;
+static unsigned LONG_LONG last_tf_arg_u;
 
 struct BITS {
 	int A: 1, B:2, C:3, D:4, E: 5, F: 6, G: 7, H: 8, I: 9;


More information about the pypy-commit mailing list