[Python-checkins] cpython (2.7): fix missing variable declarations

benjamin.peterson python-checkins at python.org
Sun Mar 27 00:16:56 CET 2011


http://hg.python.org/cpython/rev/206129719e7c
changeset:   68994:206129719e7c
branch:      2.7
user:        Benjamin Peterson <benjamin at python.org>
date:        Sat Mar 26 18:09:55 2011 -0500
summary:
  fix missing variable declarations

files:
  Modules/_ctypes/_ctypes.c |  3 +++
  1 files changed, 3 insertions(+), 0 deletions(-)


diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c
--- a/Modules/_ctypes/_ctypes.c
+++ b/Modules/_ctypes/_ctypes.c
@@ -1499,6 +1499,7 @@
 c_wchar_p_from_param(PyObject *type, PyObject *value)
 {
     PyObject *as_parameter;
+    int res;
 #if (PYTHON_API_VERSION < 1012)
 # error not supported
 #endif
@@ -1566,6 +1567,7 @@
 c_char_p_from_param(PyObject *type, PyObject *value)
 {
     PyObject *as_parameter;
+    int res;
 #if (PYTHON_API_VERSION < 1012)
 # error not supported
 #endif
@@ -1634,6 +1636,7 @@
 {
     StgDictObject *stgd;
     PyObject *as_parameter;
+    int res;
 #if (PYTHON_API_VERSION < 1012)
 # error not supported
 #endif

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list